diff options
author | Florian Frank <flori@ping.de> | 2010-08-09 09:25:11 +0200 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2010-08-18 03:42:56 +0200 |
commit | a0abf5ddc4495fe6d82faccc99c36ccb5bb5714f (patch) | |
tree | 8eff347e971555f310072102a1a9ac3674b2e963 | |
parent | fcab6a330e7c62bdada03f19ae28f44dde846c36 (diff) | |
download | json-a0abf5ddc4495fe6d82faccc99c36ccb5bb5714f.tar.gz |
prepare new version
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | lib/json/version.rb | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -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 @@ -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: |