jsonschema_rs 0.45.0-aarch64-linux-musl → 0.45.1-aarch64-linux-musl

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8dfb4aef9515d5645c1222d20e0725542fe13aff169bf0ac4149a5f2d7f1b93
4
- data.tar.gz: 5fbc23fc8d2dc1ef85fe88be558f2b24f92e0f369b8aee3279005b733b6392fb
3
+ metadata.gz: a7f62f4c5adc608578fb6850a891ef9fcbdb7d736be536fc2dafc63a8f6a4349
4
+ data.tar.gz: 84a284f23aec27893080924b1acdd0f0bcc6a7a01db68d1e9ed093c1b5ec5c47
5
5
  SHA512:
6
- metadata.gz: 278d5cdce25661e47516f7576440e44af8bfb9e6f428b1e95dfd6d8b08b6e5f64b9ec92281a54207bc20f82a516004823e329136240258e1ad46821dfc095e7a
7
- data.tar.gz: 6937478bc7e9817fbb036909704eb9f01695364255c042f730e43716d377c9e1a7f19ddb1928fd3a1810633601e02bc450658312c345b69b2eda23a07b07599a
6
+ metadata.gz: 73a06227a28705a74538c889c79cd18a7705467fb49730fc941bad89b5742c44029b4714ab4b2af0a1ee69429177e36ddd0c8e3842b31012ad6ed4fd44cfcf7d
7
+ data.tar.gz: 9c1a3d45a0b4c45726b2d0d835a7c28c724b20a235b3a57ccc5ef852f365e86952e9d562ee5b8a9b615459b9e5c80db75e0ffad60dba5cbc3b9d27e60b569383
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.45.1] - 2026-04-06
6
+
7
+ ### Fixed
8
+
9
+ - Incorrect handling of `multipleOf` validation for negative numeric instances.
10
+ - Incorrect handling of `duration` format when hours and seconds appear without minutes, or years and days without months.
11
+
5
12
  ## [0.45.0] - 2026-03-08
6
13
 
7
14
  ### Added
@@ -66,7 +73,8 @@
66
73
 
67
74
  - Initial public release
68
75
 
69
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.0...HEAD
76
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.1...HEAD
77
+ [0.45.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.0...ruby-v0.45.1
70
78
  [0.45.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.44.1...ruby-v0.45.0
71
79
  [0.44.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.44.0...ruby-v0.44.1
72
80
  [0.44.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.43.0...ruby-v0.44.0
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JSONSchema
4
- VERSION = "0.45.0"
4
+ VERSION = "0.45.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonschema_rs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.45.1
5
5
  platform: aarch64-linux-musl
6
6
  authors:
7
7
  - Dmitry Dygalo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-08 00:00:00.000000000 Z
11
+ date: 2026-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal
@@ -43,7 +43,6 @@ files:
43
43
  - MIGRATION.md
44
44
  - README.md
45
45
  - ext/jsonschema/extconf.rb
46
- - lib/jsonschema/3.2/jsonschema_rb.so
47
46
  - lib/jsonschema/3.3/jsonschema_rb.so
48
47
  - lib/jsonschema/3.4/jsonschema_rb.so
49
48
  - lib/jsonschema/4.0/jsonschema_rb.so
@@ -69,7 +68,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
68
  requirements:
70
69
  - - ">="
71
70
  - !ruby/object:Gem::Version
72
- version: '3.2'
71
+ version: '3.3'
73
72
  - - "<"
74
73
  - !ruby/object:Gem::Version
75
74
  version: 4.1.dev
Binary file