Skip to content

Commit

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

## 0.7.2 (February 23rd, 2010)
* fixed broken to_json compatibility
* removed strlen in a few places in favor of RSTRING_LEN since ruby already knows the length of the string
* patched Yajl to more efficiently reset it's lexer (no more malloc/free)
* removed dependency on IO#eof? when parsing from an IO for full Rack-spec compatibility
* removed some various cruft code in C

## 0.7.1 (February 17th, 2010)
* revert a patch made to bundled Yajl enabling optional quoting of strings that broke binary API compatibility

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.1"
VERSION = "0.7.2"

# 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.1"
s.version = "0.7.2"

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-02-17}
s.date = %q{2010-02-23}
s.email = %q{seniorlopez@gmail.com}
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
Expand Down

0 comments on commit c5d8d57

Please sign in to comment.