diff --git a/ext/json/VERSION b/ext/json/VERSION index 005119baaa..437459cd94 100644 --- a/ext/json/VERSION +++ b/ext/json/VERSION @@ -1 +1 @@ -2.4.1 +2.5.0 diff --git a/ext/json/lib/json/common.rb b/ext/json/lib/json/common.rb index d58c7eae90..3e390f2d6b 100644 --- a/ext/json/lib/json/common.rb +++ b/ext/json/lib/json/common.rb @@ -71,6 +71,7 @@ module JSON end self.state = generator::State const_set :State, self.state + const_set :SAFE_STATE_PROTOTYPE, State.new # for JRuby ensure $VERBOSE = old end diff --git a/ext/json/lib/json/version.rb b/ext/json/lib/json/version.rb index 5502a4d273..2a0a6e8e55 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.4.1' + VERSION = '2.5.0' VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: diff --git a/test/json/json_generator_test.rb b/test/json/json_generator_test.rb index 5bafc3ead4..f31b6b290e 100644 --- a/test/json/json_generator_test.rb +++ b/test/json/json_generator_test.rb @@ -232,7 +232,7 @@ EOT end def test_gc - if respond_to?(:assert_in_out_err) + if respond_to?(:assert_in_out_err) && !(RUBY_PLATFORM =~ /java/) assert_in_out_err(%w[-rjson --disable-gems], <<-EOS, [], []) bignum_too_long_to_embed_as_string = 1234567890123456789012345 expect = bignum_too_long_to_embed_as_string.to_s diff --git a/test/json/ractor_test.rb b/test/json/ractor_test.rb index 96d1528c5b..71105e55ec 100644 --- a/test/json/ractor_test.rb +++ b/test/json/ractor_test.rb @@ -4,10 +4,6 @@ require 'test_helper' class JSONInRactorTest < Test::Unit::TestCase - def setup - skip unless defined? Ractor - end - def test_generate assert_separately([], "#{<<~"begin;"}\n#{<<~'end;'}") begin; @@ -31,4 +27,4 @@ class JSONInRactorTest < Test::Unit::TestCase assert_equal(JSON.parse(expected_json), r.take) end; end -end +end if defined?(Ractor) diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index e7a9a9cc44..620215067d 100644 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -119,6 +119,7 @@ def sync_default_gems(gem) rm_rf(%w[ext/json test/json]) cp_r("#{upstream}/ext/json/ext", "ext/json") cp_r("#{upstream}/tests", "test/json") + rm_rf("test/json/lib") cp_r("#{upstream}/lib", "ext/json") cp_r("#{upstream}/json.gemspec", "ext/json") cp_r("#{upstream}/VERSION", "ext/json")