Skip to content

Commit

Permalink
updated files for 0.5.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Jun 20, 2009
1 parent 7704df6 commit 866e58e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,14 @@
# Changelog

## 0.5.6 (June 19th, 2009)
* Added JSON.default_options hash to the JSON gem compatibility API
* Split out the JSON gem compatibility API's parsing and encoding methods into individually includable files
** the use case here is if you *only* want parsing, or *only* want encoding
** also, if you don't include encoding it won't include the #to_json overrides which tend to cause problems in some environments.
* Removed some large benchmark test files to reduce the size of the packaged gem by 1.5MB!

## 0.5.5 (June 17th, 2009)
* Introduction of the JSON gem API compatibility layer
* Introduction of the JSON gem compatibility API
** NOTE: this isn't a 1:1 compatibility API, the goal was to be compatible with as many of the projects using the JSON gem as possible - not the JSON gem API itself
** the compatibility API must be explicitly enabled by requiring 'yajl/json_gem' in your project
** JSON.parse, JSON.generate, and the #to_json instance method extension to ruby's primitive classes are all included
Expand Down
2 changes: 1 addition & 1 deletion lib/yajl.rb
Expand Up @@ -13,7 +13,7 @@
#
# Ruby bindings to the excellent Yajl (Yet Another JSON Parser) ANSI C library.
module Yajl
VERSION = "0.5.5"
VERSION = "0.5.6"

class Parser
# A helper method for parse-and-forget use-cases
Expand Down
2 changes: 1 addition & 1 deletion yajl-ruby.gemspec
Expand Up @@ -2,7 +2,7 @@

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
Expand Down

0 comments on commit 866e58e

Please sign in to comment.