summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-10-24 09:21:02 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-10-24 09:21:02 +0900
commit2db5894cfa7322b00e24ad21a76ea584b0b22f5a (patch)
tree1c643e922568ed2abff3b3923b2442a20a1df811
parent009619e33c0724bf515908916823db8195bb0660 (diff)
downloadjson-2db5894cfa7322b00e24ad21a76ea584b0b22f5a.tar.gz
Bump version to v2.6.1v2.6.1
-rw-r--r--CHANGES.md4
-rw-r--r--VERSION2
-rw-r--r--lib/json/version.rb2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index b65c1b1..ba66514 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,9 @@
# Changes
+### 2021-10-24 (2.6.1)
+
+* Restore version.rb with 2.6.1
+
### 2021-10-14 (2.6.0)
* Use `rb_enc_interned_str` if available to reduce allocations in `freeze: true` mode. #451.
diff --git a/VERSION b/VERSION
index e70b452..6a6a3d8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.6.0
+2.6.1
diff --git a/lib/json/version.rb b/lib/json/version.rb
index 1bf6a90..35e8dd3 100644
--- a/lib/json/version.rb
+++ b/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: