Skip to content

Commit c4d5505

Browse files
committed
chore(rust): Release 0.21.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 1744a1e commit c4d5505

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.21.0] - 2024-09-29
6+
57
**Important:** This release brings a complete rework of reference resolving which deprecates some older APIs.
68
While backward compatibility is maintained for now, users are encouraged to update their code. See the [Migration Guide](MIGRATION.md) for details on transitioning to the new API.
79

@@ -574,8 +576,9 @@ Old names are retained for backward compatibility but will be removed in a futur
574576

575577
- Initial public release
576578

577-
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...HEAD
578-
[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.20.0
579+
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.21.0...HEAD
580+
[0.21.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...rust-v0.21.0
581+
[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.1...rust-v0.20.0
579582
[0.19.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.19.1
580583
[0.19.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.3...rust-v0.19.0
581584
[0.18.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.2...rust-v0.18.3

crates/jsonschema-cli/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-cli"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
description = "A command line tool for JSON Schema validation."
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -13,7 +13,7 @@ license.workspace = true
1313

1414
[dependencies]
1515
clap = { version = "4.5", features = ["derive"] }
16-
jsonschema = { version = "0.20.0", path = "../jsonschema/" }
16+
jsonschema = { version = "0.21.0", path = "../jsonschema/" }
1717
serde_json.workspace = true
1818

1919
[[bin]]

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.20.0"
3+
version = "0.21.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.20.0"
3+
version = "0.21.0"
44
description = "JSON schema validaton library"
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -41,7 +41,7 @@ reqwest = { version = "0.12", features = [
4141
"blocking",
4242
"json",
4343
], default-features = false, optional = true }
44-
referencing = { version = "0.20.0", path = "../jsonschema-referencing" }
44+
referencing = { version = "0.21.0", path = "../jsonschema-referencing" }
4545
serde.workspace = true
4646
serde_json.workspace = true
4747
time = { version = "0.3", features = ["parsing", "macros"] }

0 commit comments

Comments
 (0)