summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2012-05-07 13:13:39 +0200
committerFlorian Frank <flori@ping.de>2012-05-09 23:57:29 +0200
commit6d9a1d8caaf70b6a6c6878b66cff661f32c8355a (patch)
tree42433b0ff96dce338cdc0bf64c402c88a96a36fb
parentd7b837e77adbe42c7287055d4a5c8142008d0705 (diff)
downloadjson-6d9a1d8caaf70b6a6c6878b66cff661f32c8355a.tar.gz
Prepare new version
-rw-r--r--CHANGES2
-rw-r--r--VERSION2
-rw-r--r--json.gemspec2
-rw-r--r--json_pure.gemspec2
-rw-r--r--lib/json/version.rb2
5 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 37c3c80..3dfa4f0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+2012-04-28 (1.7.1)
+ * Some small fixes for building
2012-04-28 (1.7.0)
* Add JSON::GenericObject for method access to objects transmitted via JSON.
2012-04-27 (1.6.7)
diff --git a/VERSION b/VERSION
index bd8bf88..943f9cb 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.7.0
+1.7.1
diff --git a/json.gemspec b/json.gemspec
index 82baf13..1987d46 100644
--- a/json.gemspec
+++ b/json.gemspec
@@ -2,7 +2,7 @@
Gem::Specification.new do |s|
s.name = "json"
- s.version = "1.7.0"
+ s.version = "1.7.1"
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 124429d..15ec7de 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.0"
+ s.version = "1.7.1"
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 c27628e..b1cf47f 100644
--- a/lib/json/version.rb
+++ b/lib/json/version.rb
@@ -1,6 +1,6 @@
module JSON
# JSON version
- VERSION = '1.7.0'
+ VERSION = '1.7.1'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: