json 2.8.0-java → 2.8.1-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '028722a95a19f36273e395c75c39bce1d12eeaccc31b208c16e3c12adece4ea1'
4
- data.tar.gz: d4c11f6be31a3aaf913ee7d3675dfba0a760aaeff18bf58894d4e6693955a909
3
+ metadata.gz: 22cd415f4f4cf98d59f767f269ab163b88c015719cd974a55bdfc83f087170b9
4
+ data.tar.gz: 545b0d5a6ca3873e6db17b9854c425e96f59719c050a39a749a7bd99f4109f8e
5
5
  SHA512:
6
- metadata.gz: fac7a86491aa6f5844d8de472f8b7f9f1cb977cce0ce02044d384d5cf65ab180a6545514270b1f8ace2113fc0f0fc1dfef41b2cac233392cc3cf7f6dd8f2ac13
7
- data.tar.gz: d3af20766bf04d0ac65d3812de0cad1d88957c495a8d23064b48aafc72a89476bdbd4dd506228728d9263265704fc9952cadeb9c20dbffad10ffb02bd5123e6a
6
+ metadata.gz: 432356f2ce4c10efd568c7fa09596f318f70ce942cd66dfeaaf6469b3f8ad58a2cf751b2d0d9b8bef3e662335142e4ec9b9cd4172338021fb7d8a6d3585b94af
7
+ data.tar.gz: 329ef4f74d36e80bd5339532a22175b44c2f2eaeb25c902e7ce5c6da3f4b1c1daf7fee2446105d2f89f35dc41450f9dd3bdcfb9562fb83a7a406d98c33a2ea72
data/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes
2
2
 
3
+ ### 2024-11-06 (2.8.1)
4
+
5
+ * Fix the java packages to include the extension.
6
+
3
7
  ### 2024-11-06 (2.8.0)
4
8
 
5
9
  * Emit a deprecation warning when `JSON.load` create custom types without the `create_additions` option being explictly enabled.
data/json.gemspec CHANGED
@@ -50,6 +50,7 @@ spec = Gem::Specification.new do |s|
50
50
 
51
51
  if java_ext
52
52
  s.platform = 'java'
53
+ s.files += Dir["lib/json/ext/**/*.jar"]
53
54
  else
54
55
  s.extensions = Dir["ext/json/**/extconf.rb"]
55
56
  s.files += Dir["ext/json/**/*.{c,h,rl}"]
Binary file
Binary file
data/lib/json/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JSON
4
- VERSION = '2.8.0'
4
+ VERSION = '2.8.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.0
4
+ version: 2.8.1
5
5
  platform: java
6
6
  authors:
7
7
  - Daniel Luz
@@ -40,7 +40,9 @@ files:
40
40
  - lib/json/add/time.rb
41
41
  - lib/json/common.rb
42
42
  - lib/json/ext.rb
43
+ - lib/json/ext/generator.jar
43
44
  - lib/json/ext/generator/state.rb
45
+ - lib/json/ext/parser.jar
44
46
  - lib/json/generic_object.rb
45
47
  - lib/json/truffle_ruby/generator.rb
46
48
  - lib/json/version.rb