summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2010-08-09 09:25:11 +0200
committerFlorian Frank <flori@ping.de>2010-08-09 09:25:11 +0200
commit72fae22ecd7c51fdf427de5b3e4bde81a244c42f (patch)
tree82e5a47405fe9c5292cbacd2953ceff476fd6d37
parentae7a01f43d24dfe84b8ac2e2de505538e6011710 (diff)
downloadjson-1.4.6.tar.gz
prepare new versionv1.4.6
-rw-r--r--CHANGES4
-rw-r--r--VERSION2
-rw-r--r--lib/json/version.rb2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 137572b..6caff4f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+2010-08-09 (1.4.6)
+ * Fixed oversight reported in http://github.com/flori/json/issues/closed#issue/23,
+ always create a new object from the state prototype.
+ * Made pure and ext api more similar again.
2010-08-07 (1.4.5)
* Manage data structure nesting depth in state object during generation. This
should reduce problems with to_json method definŃ–tions that only have one
diff --git a/VERSION b/VERSION
index e516bb9..c514bd8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.4.5
+1.4.6
diff --git a/lib/json/version.rb b/lib/json/version.rb
index ef44e2a..a369b6c 100644
--- a/lib/json/version.rb
+++ b/lib/json/version.rb
@@ -1,6 +1,6 @@
module JSON
# JSON version
- VERSION = '1.4.5'
+ VERSION = '1.4.6'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: