1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge json-2.5.1

This commit is contained in:
Hiroshi SHIBATA 2020-12-22 21:51:15 +09:00
parent 9b9cbbbc17
commit 034c19ce28
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
3 changed files with 4 additions and 2 deletions

View file

@ -1 +1 @@
2.5.0
2.5.1

View file

@ -72,6 +72,8 @@ module JSON
self.state = generator::State
const_set :State, self.state
const_set :SAFE_STATE_PROTOTYPE, State.new # for JRuby
const_set :FAST_STATE_PROTOTYPE, create_fast_state
const_set :PRETTY_STATE_PROTOTYPE, create_pretty_state
ensure
$VERBOSE = old
end

View file

@ -1,7 +1,7 @@
# frozen_string_literal: false
module JSON
# JSON version
VERSION = '2.5.0'
VERSION = '2.5.1'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: