diff options
-rw-r--r-- | CHANGES | 3 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | json.gemspec | 4 | ||||
-rw-r--r-- | json_pure.gemspec | 4 | ||||
-rw-r--r-- | lib/json/version.rb | 2 |
5 files changed, 9 insertions, 6 deletions
@@ -1,3 +1,6 @@ +2011-11-21 (1.6.2) + * Add support for OpenStruct and BigDecimal. + * Fix bug when parsing nil in quirks_mode. 2011-09-18 (1.6.1) * Using -target 1.5 to force Java bits to compile with 1.5. 2011-09-12 (1.6.0) @@ -1 +1 @@ -1.6.1 +1.6.2 diff --git a/json.gemspec b/json.gemspec index eec0617..ba0f8a2 100644 --- a/json.gemspec +++ b/json.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = "json" - s.version = "1.6.1" + s.version = "1.6.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Florian Frank"] - s.date = "2011-11-21" + s.date = "2011-11-22" s.description = "This is a JSON implementation as a Ruby extension in C." s.email = "flori@ping.de" s.extensions = ["ext/json/ext/generator/extconf.rb", "ext/json/ext/parser/extconf.rb"] diff --git a/json_pure.gemspec b/json_pure.gemspec index f5ed410..77dec15 100644 --- a/json_pure.gemspec +++ b/json_pure.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = "json_pure" - s.version = "1.6.1" + s.version = "1.6.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Florian Frank"] - s.date = "2011-11-21" + s.date = "2011-11-22" s.description = "This is a JSON implementation in pure Ruby." s.email = "flori@ping.de" s.extra_rdoc_files = ["README.rdoc"] diff --git a/lib/json/version.rb b/lib/json/version.rb index 5983945..ee9a95a 100644 --- a/lib/json/version.rb +++ b/lib/json/version.rb @@ -1,6 +1,6 @@ module JSON # JSON version - VERSION = '1.6.1' + VERSION = '1.6.2' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: |