diff options
author | Florian Frank <flori@ping.de> | 2010-05-05 23:21:37 +0200 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2010-05-05 23:21:37 +0200 |
commit | 82ed5b724fb36dcba884cdb2251d953580c9de56 (patch) | |
tree | be514006bff82b336da6d4df3152170ef0420006 /lib | |
parent | d496f792bf98dc49512d8f04f5867d26f6b8aed3 (diff) | |
download | json-82ed5b724fb36dcba884cdb2251d953580c9de56.tar.gz |
Fix for subclassed core classes, github issue 20v1.4.3
Fixed a problem in the 1.4.x versions, that caused subclasses of core
classes to miss calling their to_json methods.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/json/version.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/json/version.rb b/lib/json/version.rb index de7690b..a06d157 100644 --- a/lib/json/version.rb +++ b/lib/json/version.rb @@ -1,6 +1,6 @@ module JSON # JSON version - VERSION = '1.4.2' + VERSION = '1.4.3' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: |