File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 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) ` .
Original file line number Diff line number Diff line change 1- 2.3.0
1+ 2.3.1
Original file line number Diff line number Diff line change 11# frozen_string_literal: false
22module 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:
You can’t perform that action at this time.
0 commit comments