aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-12-12 09:14:09 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-12-12 09:14:09 +0900
commit53e8589c69d1345235d9f02ecbcf6aa32fa9d39c (patch)
tree95485d76ea7289bfbec600b8b0ab8cbe873361d9 /ext
parent7d991a0571ab33f44c00fdc227f076d1eaf5fb2b (diff)
downloadruby-53e8589c69d1345235d9f02ecbcf6aa32fa9d39c.tar.gz
Import json-2.3.0 from flori/json
Diffstat (limited to 'ext')
-rw-r--r--ext/json/json.gemspec6
-rw-r--r--ext/json/lib/json/version.rb2
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/json/json.gemspec b/ext/json/json.gemspec
index 51dd8f02b5..d8be2e52c6 100644
--- a/ext/json/json.gemspec
+++ b/ext/json/json.gemspec
@@ -2,12 +2,12 @@
Gem::Specification.new do |s|
s.name = "json"
- s.version = "2.2.0"
+ s.version = "2.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Florian Frank"]
- s.date = "2019-02-21"
+ s.date = "2019-12-11"
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", "ext/json/extconf.rb"]
@@ -124,7 +124,7 @@ Gem::Specification.new do |s|
s.licenses = ["Ruby"]
s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.md"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9")
- s.rubygems_version = "3.0.2"
+ s.rubygems_version = "3.0.3"
s.summary = "JSON Implementation for Ruby"
s.test_files = ["tests/test_helper.rb"]
diff --git a/ext/json/lib/json/version.rb b/ext/json/lib/json/version.rb
index 115eb5bb9a..9d781df875 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.2.0'
+ VERSION = '2.3.0'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: