Skip to content

Commit fb45aed

Browse files
committed
chore(ruby): Release 0.45.1
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent 6908cfb commit fb45aed

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

crates/jsonschema-rb/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.45.1] - 2026-04-06
6+
57
### Fixed
68

79
- Incorrect handling of `multipleOf` validation for negative numeric instances.
@@ -71,7 +73,8 @@
7173

7274
- Initial public release
7375

74-
[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
7578
[0.45.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.44.1...ruby-v0.45.0
7679
[0.44.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.44.0...ruby-v0.44.1
7780
[0.44.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.43.0...ruby-v0.44.0

crates/jsonschema-rb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema-rb"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
edition = "2021"
55
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
66
license = "MIT"
@@ -13,7 +13,7 @@ publish = false
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
jsonschema = { version = "0.45.0", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
16+
jsonschema = { version = "0.45.1", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
1717
magnus = { version = "0.8", features = ["rb-sys"] }
1818
rb-sys = "0.9"
1919
serde = { workspace = true }

crates/jsonschema-rb/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
jsonschema_rs (0.45.0)
4+
jsonschema_rs (0.45.1)
55
bigdecimal (>= 3.1, < 5)
66
rb_sys (~> 0.9.124)
77

@@ -98,7 +98,7 @@ CHECKSUMS
9898
json (2.19.2) sha256=e7e1bd318b2c37c4ceee2444841c86539bc462e81f40d134cf97826cb14e83cf
9999
json-schema (6.1.0) sha256=6bf70a2cfb6dfd5a06da28093fa8190f324c88eabd36a7f47097f227321dc702
100100
json_schemer (2.5.0) sha256=2f01fb4cce721a4e08dd068fc2030cffd0702a7f333f1ea2be6e8991f00ae396
101-
jsonschema_rs (0.45.0)
101+
jsonschema_rs (0.45.1)
102102
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
103103
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
104104
parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130

crates/jsonschema-rb/ext/jsonschema/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/jsonschema-rb/ext/jsonschema/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema-rb-ext"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
edition = "2021"
55
publish = false
66

@@ -10,10 +10,10 @@ name = "jsonschema_rb"
1010
path = "../../src/lib.rs"
1111

1212
[dependencies]
13-
jsonschema = { version = "0.45.0", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
13+
jsonschema = { version = "0.45.1", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
1414
magnus = { version = "0.8", features = ["rb-sys"] }
1515
rb-sys = "0.9"
16-
referencing = "0.45.0"
16+
referencing = "0.45.1"
1717
serde = { version = "1", features = ["derive"] }
1818
serde_json = { version = "1", features = ["arbitrary_precision"] }
1919

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module JSONSchema
4-
VERSION = "0.45.0"
4+
VERSION = "0.45.1"
55
end

0 commit comments

Comments
 (0)