aboutsummaryrefslogtreecommitdiffstats
path: root/ext/json
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-12 09:40:11 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-12 09:40:11 +0000
commit1bc5669857e8fe3daa2a3fa6a4c343e3fb1a19d7 (patch)
tree687fb60cade9a19ae75fc2a486f255de7b55af8c /ext/json
parent9829e91d34af2f71758410e53f5d0cea0a7558a8 (diff)
downloadruby-1bc5669857e8fe3daa2a3fa6a4c343e3fb1a19d7.tar.gz
* ext/json/json.gemspec: bump version to 1.8.2.
* ext/json/lib/json/version.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json')
-rw-r--r--ext/json/json.gemspec2
-rw-r--r--ext/json/lib/json/version.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/json/json.gemspec b/ext/json/json.gemspec
index 627a64f783..d756dd78ed 100644
--- a/ext/json/json.gemspec
+++ b/ext/json/json.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "json"
- s.version = "1.8.1"
+ s.version = "1.8.2"
s.summary = "This json is bundled with Ruby"
s.executables = []
s.files = ["json.rb", "json/add/bigdecimal.rb", "json/add/complex.rb", "json/add/core.rb", "json/add/date.rb", "json/add/date_time.rb", "json/add/exception.rb", "json/add/ostruct.rb", "json/add/range.rb", "json/add/rational.rb", "json/add/regexp.rb", "json/add/struct.rb", "json/add/symbol.rb", "json/add/time.rb", "json/common.rb", "json/ext.rb", "json/ext/generator.bundle", "json/ext/parser.bundle", "json/generic_object.rb", "json/version.rb"]
diff --git a/ext/json/lib/json/version.rb b/ext/json/lib/json/version.rb
index 47cdcd607c..4549f5f213 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.8.1'
+ VERSION = '1.8.2'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: