From 0d8c4b944ba49df57ffb69d81179d2ae949cd51d Mon Sep 17 00:00:00 2001 From: Florian Frank Date: Fri, 17 Aug 2012 20:51:06 +0200 Subject: Prepare new version --- CHANGES | 2 ++ VERSION | 2 +- json.gemspec | 2 +- json_pure.gemspec | 2 +- lib/json/version.rb | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index bd48aab..020c5ac 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +2012-08-17 (1.7.5) + * Fix compilation of extension on older rubies. 2012-07-26 (1.7.4) * Fix compilation problem on AIX, see https://github.com/flori/json/issues/142 2012-05-12 (1.7.3) diff --git a/VERSION b/VERSION index 10c0880..6a126f4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.7.4 +1.7.5 diff --git a/json.gemspec b/json.gemspec index 7578698..39addce 100644 --- a/json.gemspec +++ b/json.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "json" - s.version = "1.7.4" + s.version = "1.7.5" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Florian Frank"] diff --git a/json_pure.gemspec b/json_pure.gemspec index 172a348..33b0231 100644 --- a/json_pure.gemspec +++ b/json_pure.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "json_pure" - s.version = "1.7.4" + s.version = "1.7.5" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Florian Frank"] diff --git a/lib/json/version.rb b/lib/json/version.rb index e0fc0b4..45af03f 100644 --- a/lib/json/version.rb +++ b/lib/json/version.rb @@ -1,6 +1,6 @@ module JSON # JSON version - VERSION = '1.7.4' + VERSION = '1.7.5' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: -- cgit v1.2.1