Skip to content

Commit 81b9da3

Browse files
committed
chore(rust): Release 0.20.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 6c26605 commit 81b9da3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
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.20.0] - 2024-09-18
6+
57
**Important:** This release includes several deprecations and renames. 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.
68

79
### Added
@@ -538,7 +540,8 @@ Old names are retained for backward compatibility but will be removed in a futur
538540

539541
- Initial public release
540542

541-
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.1...HEAD
543+
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...HEAD
544+
[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.20.0
542545
[0.19.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.19.1
543546
[0.19.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.3...rust-v0.19.0
544547
[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.19.1"
3+
version = "0.20.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.19.1", path = "../jsonschema/" }
16+
jsonschema = { version = "0.20.0", path = "../jsonschema/" }
1717
serde_json.workspace = true
1818

1919
[[bin]]

crates/jsonschema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema"
3-
version = "0.19.1"
3+
version = "0.20.0"
44
description = "JSON schema validaton library"
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]

0 commit comments

Comments
 (0)