Skip to content

Commit 2ef12bd

Browse files
committed
chore(rust): Release 0.45.1
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent b3f43c2 commit 2ef12bd

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

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.
@@ -1231,7 +1233,8 @@ Old names are retained for backward compatibility but will be removed in a futur
12311233

12321234
- Initial public release
12331235

1234-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.45.0...HEAD
1236+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.45.1...HEAD
1237+
[0.45.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.45.0...rust-v0.45.1
12351238
[0.45.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.44.1...rust-v0.45.0
12361239
[0.44.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.44.0...rust-v0.44.1
12371240
[0.44.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.43.0...rust-v0.44.0

crates/jsonschema-cli/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-cli"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
description = "A command line tool for JSON Schema validation."
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -17,9 +17,9 @@ path = "src/main.rs"
1717

1818
[dependencies]
1919
clap = { version = "4.5", features = ["derive"] }
20-
jsonschema = { version = "0.45.0", path = "../jsonschema/" }
20+
jsonschema = { version = "0.45.1", path = "../jsonschema/" }
2121
percent-encoding = "2.3"
22-
referencing = { version = "0.45.0", path = "../jsonschema-referencing" }
22+
referencing = { version = "0.45.1", path = "../jsonschema-referencing" }
2323
serde-saphyr = { version = "0.0.23", default-features = false, features = ["deserialize"] }
2424
serde_json.workspace = true
2525

crates/jsonschema-referencing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "referencing"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
description = "An implementation-agnostic JSON reference resolution library for Rust."
55
readme = "README.md"
66
rust-version.workspace = true

crates/jsonschema/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"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
description = "JSON schema validaton library"
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -61,7 +61,7 @@ num-bigint = { version = "0.4", optional = true }
6161
num-cmp = "0.1"
6262
num-traits = "0.2.19"
6363
percent-encoding = "2.3"
64-
referencing = { version = "0.45.0", path = "../jsonschema-referencing" }
64+
referencing = { version = "0.45.1", path = "../jsonschema-referencing" }
6565
regex = "1.11.1"
6666
regex-syntax = "0.8.5"
6767
serde.workspace = true

0 commit comments

Comments
 (0)