jsonschema_rs 0.45.0-x86_64-linux → 0.45.1-x86_64-linux

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: 0f0b8634cf16ce2ebe57961694d488a6051b7ba687634f1b59a64feda87c3602
4
- data.tar.gz: c0ace74a94dd6bf3106b1af3550cd40c6d12bcafdeac7293dc8eb4709ad8ee0f
3
+ metadata.gz: b33a0adbeca5039608f82b9d5bd36c3a6e81afd9c88fbf64333bbccdef367052
4
+ data.tar.gz: 56ba5266838f57eae816fd1c381675c23432289813c14a3a816e520db07a640f
5
5
  SHA512:
6
- metadata.gz: 5de8b02d35289d7ef30600af32699637e43c356b78c3e2a1084348bf1794e31df4e8acf9b5d84905bad32cbc86955f82d2ed01020eb5a2227e51837fe34bfe2a
7
- data.tar.gz: e267587e4d8959548902fb0851d0861066314fe6a99cc5fcefd26d75f067e0dcb03523d492e7686d8c36e642e081c22a766d4948a70ef97462393370a1e389d1
6
+ metadata.gz: ba56ed3adbf7fbaae3667a9e83a1b13eea5bc12fe7128033c8b9ce5edce24080dc8adfc1a809fabc2d9171676ae6a746ed2913a54d1b3419b81f03cfa2c2cbdb
7
+ data.tar.gz: 4f401624b4e55ea8518ca01cfdb6421dc8f5f862ebb55c3260947744b0784c4afb23ec5c58d3f172923216dc1fb1a486fea55bf84dd1260d07ad92e7184e1288
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: x86_64-linux
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