json_pure 2.6.0 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +11 -0
  3. data/VERSION +1 -1
  4. data/lib/json/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f1ce1e33dc671d54c843629592229a16a0de61727602228a65b508581abb051
4
- data.tar.gz: 21b166151dd27512e74c2f157f54dd310d488a80a96da564ccaed31772a61108
3
+ metadata.gz: 820b895dd3defc1917ad0da99381fdca3700739b928f9bc5a2f47a9b9360e67d
4
+ data.tar.gz: 9568c251727c4ec133f4cc63fcec532bfe3c2b755c52f9477431aa82a6f432e3
5
5
  SHA512:
6
- metadata.gz: c49d14b3e02ce23c16bf1ee4fea517789a5191e4d994433c886aa48ddbfc4209bd7de24de928405e81419ab715d06ac6b558eb21054eaaa7af825e62cac8eb55
7
- data.tar.gz: 39df566e12dede3bb3c27768ea1fdee5310aba19b879fe87509a4735a2e9177f927bd02b15978419992ff4b7b946755b416587db40282626a48bd574e4735cc0
6
+ metadata.gz: 3cf9b62dd6f1339be3470d108aa0a984262a26e1d1f9bc933742d6ea93ed3e8fb87bd08f40b2de2977e1e372b8e05c626447a5e7b5dfdacf748fc4a5cc34a585
7
+ data.tar.gz: 7976e0e160a7c36cf7c7c9f2f0a6c9b8487b0a6b8928f0528be18c4077ff901e8ba132cbac1f44e545efb219cb67cba8e88bd058be554ecd91cc4e006c700ab7
data/CHANGES.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changes
2
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.
10
+ * Bump required_ruby_version to 2.3.
11
+ * Fix compatibility with `GC.compact`.
12
+ * Fix some compilation warnings. #469
13
+
3
14
  ## 2020-12-22 (2.5.1)
4
15
 
5
16
  * Restore the compatibility for constants of JSON class.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.6.0
1
+ 2.6.1
data/lib/json/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
  module JSON
3
3
  # JSON version
4
- VERSION = '2.6.0'
4
+ VERSION = '2.6.1'
5
5
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
6
6
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
7
7
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_pure
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-14 00:00:00.000000000 Z
11
+ date: 2021-10-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: This is a JSON implementation in pure Ruby.
14
14
  email: flori@ping.de