diff options
author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2020-07-01 18:50:39 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2020-07-01 18:50:39 +0900 |
commit | 0aac138e0b507c8a361f7cf2f30c276e7110ea33 (patch) | |
tree | 2e3d371ff918c8d6588cd69b4e3afb4be2ecd5de /ext | |
parent | 26041da2fbca4cfeffaee13b66f90310d5d72e18 (diff) |
Merge json-2.3.1 from flori/json
Diffstat (limited to 'ext')
-rw-r--r-- | ext/json/json.gemspec | 4 | ||||
-rw-r--r-- | ext/json/lib/json/version.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/json/json.gemspec b/ext/json/json.gemspec index 30f5d7013c..cfa3c03a69 100644 --- a/ext/json/json.gemspec +++ b/ext/json/json.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "json" - s.version = "2.3.0" + s.version = "2.3.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"] @@ -135,5 +135,5 @@ Gem::Specification.new do |s| s.test_files = ["tests/test_helper.rb"] s.add_development_dependency("rake", [">= 0"]) - s.add_development_dependency("test-unit", ["~> 2.0"]) + s.add_development_dependency("test-unit", [">= 2.0", "< 4.0"]) end diff --git a/ext/json/lib/json/version.rb b/ext/json/lib/json/version.rb index 9d781df875..e4dd3e3367 100644 --- a/ext/json/lib/json/version.rb +++ b/ext/json/lib/json/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: false module JSON # JSON version - VERSION = '2.3.0' + VERSION = '2.3.1' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: |