We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009619e commit 2db5894Copy full SHA for 2db5894
CHANGES.md
@@ -1,5 +1,9 @@
1
# Changes
2
3
+### 2021-10-24 (2.6.1)
4
+
5
+* Restore version.rb with 2.6.1
6
7
### 2021-10-14 (2.6.0)
8
9
* Use `rb_enc_interned_str` if available to reduce allocations in `freeze: true` mode. #451.
VERSION
@@ -1 +1 @@
-2.6.0
+2.6.1
lib/json/version.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: false
module JSON
# JSON version
- VERSION = '2.6.0'
+ VERSION = '2.6.1'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
0 commit comments