From e86212060fe0ef1b196633ebe52cb84e50bc6f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= Date: Sun, 17 Feb 2013 00:01:49 +0100 Subject: [PATCH] Revert JSON version bump. Although it means that Ruby's JSON will differ from RubyGems version of JSON, it prevents possible compatibility issues for every project, which might use Bundler to specify its dependencies. Although for regular user, this incompatibility might be fixed by simple 'bundle update' command, it is not doable for Linux distributions, which provides packaged Ruby, including JSON gem, but are not responsible for every Ruby project on the system. --- ext/json/lib/json/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/json/lib/json/version.rb b/ext/json/lib/json/version.rb index baacdc9..2175ac0 100644 --- a/ext/json/lib/json/version.rb +++ b/ext/json/lib/json/version.rb @@ -1,6 +1,6 @@ module JSON # JSON version - VERSION = '1.5.5' + VERSION = '1.5.4' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: -- 1.8.0.msysgit.0