Skip to content

Commit 8dea24a

Browse files
committed
chore(rust): Release 0.45.0
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent 8da0f79 commit 8dea24a

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.0] - 2026-03-08
6+
57
### Added
68

79
- `bundle(schema)` / `async_bundle(schema)` / `ValidationOptions::bundle`: produce a Compound Schema Document with external `$ref` targets embedded in a draft-appropriate container (`definitions` for Draft 4/6/7, `$defs` for Draft 2019-09/2020-12) while preserving `$ref` values. [#791](https://github.com/Stranger6667/jsonschema/issues/791).
@@ -1224,7 +1226,8 @@ Old names are retained for backward compatibility but will be removed in a futur
12241226

12251227
- Initial public release
12261228

1227-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.44.1...HEAD
1229+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.45.0...HEAD
1230+
[0.45.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.44.1...rust-v0.45.0
12281231
[0.44.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.44.0...rust-v0.44.1
12291232
[0.44.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.43.0...rust-v0.44.0
12301233
[0.43.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.42.2...rust-v0.43.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.44.1"
3+
version = "0.45.0"
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.44.1", path = "../jsonschema/" }
20+
jsonschema = { version = "0.45.0", path = "../jsonschema/" }
2121
percent-encoding = "2.3"
22-
referencing = { version = "0.44.1", path = "../jsonschema-referencing" }
22+
referencing = { version = "0.45.0", path = "../jsonschema-referencing" }
2323
serde-saphyr = { version = "0.0.21", default-features = false }
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.44.1"
3+
version = "0.45.0"
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.44.1"
3+
version = "0.45.0"
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.44.1", path = "../jsonschema-referencing" }
64+
referencing = { version = "0.45.0", path = "../jsonschema-referencing" }
6565
regex = "1.11.1"
6666
regex-syntax = "0.8.5"
6767
serde.workspace = true

0 commit comments

Comments
 (0)