Skip to content

Commit 0951d77

Browse files
committed
Bump version to 2.3.1
1 parent ddc29e2 commit 0951d77

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changes
22

3+
## 2020-06-30 (2.3.1)
4+
5+
* Spelling and grammar fixes for comments. Pull request #191 by Josh
6+
Kline.
7+
* Enhance generic JSON and #generate docs. Pull request #347 by Victor
8+
Shepelev.
9+
* Add :nodoc: for GeneratorMethods. Pull request #349 by Victor Shepelev.
10+
* Baseline changes to help (JRuby) development. Pull request #371 by Karol
11+
Bucek.
12+
* Add metadata for rubygems.org. Pull request #379 by Alexandre ZANNI.
13+
* Remove invalid JSON.generate description from JSON module rdoc. Pull
14+
request #384 by Jeremy Evans.
15+
* Test with TruffleRuby in CI. Pull request #402 by Benoit Daloze.
16+
* Rdoc enhancements. Pull request #413 by Burdette Lamar.
17+
* Fixtures/ are not being tested... Pull request #416 by Marc-André
18+
Lafortune.
19+
* Use frozen string for hash key. Pull request #420 by Marc-André
20+
Lafortune.
21+
* Added :call-seq: to RDoc for some methods. Pull request #422 by Burdette
22+
Lamar.
23+
* Small typo fix. Pull request #423 by Marc-André Lafortune.
24+
325
## 2019-12-11 (2.3.0)
426
* Fix default of `create_additions` to always be `false` for `JSON(user_input)`
527
and `JSON.parse(user_input, nil)`.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.0
1+
2.3.1

lib/json/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: false
22
module JSON
33
# JSON version
4-
VERSION = '2.3.0'
4+
VERSION = '2.3.1'
55
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
66
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
77
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:

0 commit comments

Comments
 (0)