From c4d550598bbe013b11db7832c8db380ee52a3cae Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Sun, 29 Sep 2024 16:25:28 +0200 Subject: [PATCH] chore(rust): Release 0.21.0 Signed-off-by: Dmitry Dygalo --- CHANGELOG.md | 7 +++++-- crates/jsonschema-cli/Cargo.toml | 4 ++-- crates/jsonschema-referencing/Cargo.toml | 2 +- crates/jsonschema/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d1d27d1..1a7ec266 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.21.0] - 2024-09-29 + **Important:** This release brings a complete rework of reference resolving which deprecates some older APIs. 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. @@ -574,8 +576,9 @@ 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.20.0...HEAD -[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.20.0 +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.21.0...HEAD +[0.21.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...rust-v0.21.0 +[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.1...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 587bbfea..5fd89e77 100644 --- a/crates/jsonschema-cli/Cargo.toml +++ b/crates/jsonschema-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-cli" -version = "0.20.0" +version = "0.21.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.20.0", path = "../jsonschema/" } +jsonschema = { version = "0.21.0", path = "../jsonschema/" } serde_json.workspace = true [[bin]] diff --git a/crates/jsonschema-referencing/Cargo.toml b/crates/jsonschema-referencing/Cargo.toml index 888caee0..34fe84ba 100644 --- a/crates/jsonschema-referencing/Cargo.toml +++ b/crates/jsonschema-referencing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "referencing" -version = "0.20.0" +version = "0.21.0" description = "An implementation-agnostic JSON reference resolution library for Rust." readme = "README.md" rust-version.workspace = true diff --git a/crates/jsonschema/Cargo.toml b/crates/jsonschema/Cargo.toml index 2704d76a..28a7976e 100644 --- a/crates/jsonschema/Cargo.toml +++ b/crates/jsonschema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema" -version = "0.20.0" +version = "0.21.0" description = "JSON schema validaton library" keywords = ["jsonschema", "validation"] categories = ["web-programming"] @@ -41,7 +41,7 @@ reqwest = { version = "0.12", features = [ "blocking", "json", ], default-features = false, optional = true } -referencing = { version = "0.20.0", path = "../jsonschema-referencing" } +referencing = { version = "0.21.0", path = "../jsonschema-referencing" } serde.workspace = true serde_json.workspace = true time = { version = "0.3", features = ["parsing", "macros"] }