Skip to content

Commit

Permalink
update files for 0.7.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed May 1, 2010
1 parent f708201 commit 0381430
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.7.6 (May 1st, 2010)
* use memcmp instead of strcmp for invalid Fixnum check
* add a spec to verify unicode chars can be used as keys
* twitter examples updated
* only use -Wextra if ENV['DEBUG'] is set as gcc 3 doesn't know about it
* fix chunked http encoding parse logic to further comply with the spec (thanks to Sebastian Cohnen <sebastian.cohnen@gmx.net>)
* removed as_json checks and usage in encoder to prevent infinite loops
** In Rails a lot of objects return self from the as_json method - which is wrong IMO - and needs to be fixed before this feature will work properly

## 0.7.5 (March 23rd, 2010)
* check for existence of and use as_json method on custom objects
* bugfix with read buffer when parsing from an IO (thanks to Pavel Valodzka <pavel@valodzka.name>)
Expand Down
2 changes: 1 addition & 1 deletion lib/yajl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#
# Ruby bindings to the excellent Yajl (Yet Another JSON Parser) ANSI C library.
module Yajl
VERSION = "0.7.5"
VERSION = "0.7.6"

# For compatibility, has the same signature of Yajl::Parser.parse
def self.load(str_or_io, options={}, read_bufsize=nil, &block)
Expand Down
4 changes: 2 additions & 2 deletions yajl-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{yajl-ruby}
s.version = "0.7.5"
s.version = "0.7.6"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
s.date = %q{2010-03-23}
s.date = %q{2010-05-01}
s.email = %q{seniorlopez@gmail.com}
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
Expand Down

0 comments on commit 0381430

Please sign in to comment.