From 81b9da31a29ca960753fe9f4e68486c7351bc420 Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Wed, 18 Sep 2024 22:53:51 +0200 Subject: [PATCH] chore(rust): Release 0.20.0 Signed-off-by: Dmitry Dygalo --- CHANGELOG.md | 5 ++++- crates/jsonschema-cli/Cargo.toml | 4 ++-- crates/jsonschema/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d6fd703..c5844fa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.20.0] - 2024-09-18 + **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. ### Added @@ -538,7 +540,8 @@ Old names are retained for backward compatibility but will be removed in a futur - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.1...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...HEAD +[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.20.0 [0.19.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.19.1 [0.19.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.3...rust-v0.19.0 [0.18.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.2...rust-v0.18.3 diff --git a/crates/jsonschema-cli/Cargo.toml b/crates/jsonschema-cli/Cargo.toml index 514b8501..587bbfea 100644 --- a/crates/jsonschema-cli/Cargo.toml +++ b/crates/jsonschema-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-cli" -version = "0.19.1" +version = "0.20.0" description = "A command line tool for JSON Schema validation." keywords = ["jsonschema", "validation"] categories = ["web-programming"] @@ -13,7 +13,7 @@ license.workspace = true [dependencies] clap = { version = "4.5", features = ["derive"] } -jsonschema = { version = "0.19.1", path = "../jsonschema/" } +jsonschema = { version = "0.20.0", path = "../jsonschema/" } serde_json.workspace = true [[bin]] diff --git a/crates/jsonschema/Cargo.toml b/crates/jsonschema/Cargo.toml index cb902617..219023d8 100644 --- a/crates/jsonschema/Cargo.toml +++ b/crates/jsonschema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema" -version = "0.19.1" +version = "0.20.0" description = "JSON schema validaton library" keywords = ["jsonschema", "validation"] categories = ["web-programming"]