summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2013-05-13 10:55:36 +0200
committerFlorian Frank <flori@ping.de>2013-05-13 10:55:36 +0200
commitce6ae3876e4b23b7387637d6416ad808d1dd3d31 (patch)
treeaceaa3056cd7837d22d67cb2692083dac6d6dee8
parent6a8589c84d148b4f466a059bccd27ec59f54f64e (diff)
downloadjson-add-json-generic-object-loader-dumper.tar.gz
-rw-r--r--VERSION2
-rw-r--r--json.gemspec4
-rw-r--r--json_pure.gemspec4
-rw-r--r--lib/json/version.rb2
4 files changed, 6 insertions, 6 deletions
diff --git a/VERSION b/VERSION
index 84298f9..27f9cd3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.7.8
+1.8.0
diff --git a/json.gemspec b/json.gemspec
index 8262ddb..057756d 100644
--- a/json.gemspec
+++ b/json.gemspec
@@ -2,11 +2,11 @@
Gem::Specification.new do |s|
s.name = "json"
- s.version = "1.7.8"
+ s.version = "1.8.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Florian Frank"]
- s.date = "2013-05-10"
+ s.date = "2013-05-13"
s.description = "This is a JSON implementation as a Ruby extension in C."
s.email = "flori@ping.de"
s.extensions = ["ext/json/ext/generator/extconf.rb", "ext/json/ext/parser/extconf.rb"]
diff --git a/json_pure.gemspec b/json_pure.gemspec
index f69d294..2185202 100644
--- a/json_pure.gemspec
+++ b/json_pure.gemspec
@@ -2,11 +2,11 @@
Gem::Specification.new do |s|
s.name = "json_pure"
- s.version = "1.7.8"
+ s.version = "1.8.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Florian Frank"]
- s.date = "2013-05-10"
+ s.date = "2013-05-13"
s.description = "This is a JSON implementation in pure Ruby."
s.email = "flori@ping.de"
s.extra_rdoc_files = ["README.rdoc"]
diff --git a/lib/json/version.rb b/lib/json/version.rb
index 01c06ff..9354845 100644
--- a/lib/json/version.rb
+++ b/lib/json/version.rb
@@ -1,6 +1,6 @@
module JSON
# JSON version
- VERSION = '1.7.8'
+ VERSION = '1.8.0'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: