summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2011-11-22 08:42:51 +0100
committerFlorian Frank <flori@ping.de>2011-11-22 08:43:18 +0100
commit95e76412ae545357727420bf06e2e4744ce830fa (patch)
tree8f9239c2e20438e82540986f1c996a8475334159
parent1f2e458686fec42a4ee3cf3b7d5ab1b6d9ee4b93 (diff)
downloadjson-95e76412ae545357727420bf06e2e4744ce830fa.tar.gz
Prepare new version 1.6.2
-rw-r--r--CHANGES3
-rw-r--r--VERSION2
-rw-r--r--json.gemspec4
-rw-r--r--json_pure.gemspec4
-rw-r--r--lib/json/version.rb2
5 files changed, 9 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index 736ebb3..314de04 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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)
diff --git a/VERSION b/VERSION
index 9c6d629..fdd3be6 100644
--- a/VERSION
+++ b/VERSION
@@ -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: