summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-30 20:55:51 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-07-01 09:45:46 +0900
commit0a76a1f509d78b948da59df51b2253f63b05ef2a (patch)
treed8a7c00b898cbd691386c61f4a93803b7f7af264
parente1451eda47eb4b4710a07654716b20e741ea3d58 (diff)
downloadjson-0a76a1f509d78b948da59df51b2253f63b05ef2a.tar.gz
Bump version to 2.3.1v2.3.1
-rw-r--r--CHANGES.md22
-rw-r--r--VERSION2
-rw-r--r--lib/json/version.rb2
3 files changed, 24 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index efd7477..0d39f21 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,27 @@
# Changes
+## 2020-06-30 (2.3.1)
+
+* Spelling and grammar fixes for comments. Pull request #191 by Josh
+ Kline.
+* Enhance generic JSON and #generate docs. Pull request #347 by Victor
+ Shepelev.
+* Add :nodoc: for GeneratorMethods. Pull request #349 by Victor Shepelev.
+* Baseline changes to help (JRuby) development. Pull request #371 by Karol
+ Bucek.
+* Add metadata for rubygems.org. Pull request #379 by Alexandre ZANNI.
+* Remove invalid JSON.generate description from JSON module rdoc. Pull
+ request #384 by Jeremy Evans.
+* Test with TruffleRuby in CI. Pull request #402 by Benoit Daloze.
+* Rdoc enhancements. Pull request #413 by Burdette Lamar.
+* Fixtures/ are not being tested... Pull request #416 by Marc-André
+ Lafortune.
+* Use frozen string for hash key. Pull request #420 by Marc-André
+ Lafortune.
+* Added :call-seq: to RDoc for some methods. Pull request #422 by Burdette
+ Lamar.
+* Small typo fix. Pull request #423 by Marc-André Lafortune.
+
## 2019-12-11 (2.3.0)
* Fix default of `create_additions` to always be `false` for `JSON(user_input)`
and `JSON.parse(user_input, nil)`.
diff --git a/VERSION b/VERSION
index 276cbf9..2bf1c1c 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.3.0
+2.3.1
diff --git a/lib/json/version.rb b/lib/json/version.rb
index 9d781df..e4dd3e3 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.3.0'
+ VERSION = '2.3.1'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: