From e6f45adec29f7acd412461dc24e3855f7fd6f6f9 Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Mon, 23 Dec 2024 12:42:05 +0100 Subject: [PATCH] chore(rust): Release 0.27.0 Signed-off-by: Dmitry Dygalo --- CHANGELOG.md | 5 ++++- crates/jsonschema-cli/Cargo.toml | 4 ++-- crates/jsonschema-referencing/Cargo.toml | 2 +- crates/jsonschema/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b199a4a3..28613901 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.27.0] - 2024-12-23 + ### Added - Added `masked()` and `masked_with()` methods to `ValidationError` to support hiding sensitive data in error messages. [#434](https://github.com/Stranger6667/jsonschema/issues/434) @@ -752,7 +754,8 @@ Old names are retained for backward compatibility but will be removed in a futur - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.2...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.0...HEAD +[0.27.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.2...rust-v0.27.0 [0.26.2]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.1...rust-v0.26.2 [0.26.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.0...rust-v0.26.1 [0.26.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.25.1...rust-v0.26.0 diff --git a/crates/jsonschema-cli/Cargo.toml b/crates/jsonschema-cli/Cargo.toml index 3d0a0de7..d6442ad4 100644 --- a/crates/jsonschema-cli/Cargo.toml +++ b/crates/jsonschema-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-cli" -version = "0.26.2" +version = "0.27.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.26.2", path = "../jsonschema/" } +jsonschema = { version = "0.27.0", path = "../jsonschema/" } serde_json.workspace = true [[bin]] diff --git a/crates/jsonschema-referencing/Cargo.toml b/crates/jsonschema-referencing/Cargo.toml index b1a46edf..eae6ad80 100644 --- a/crates/jsonschema-referencing/Cargo.toml +++ b/crates/jsonschema-referencing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "referencing" -version = "0.26.2" +version = "0.27.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 24cc3136..e4c98865 100644 --- a/crates/jsonschema/Cargo.toml +++ b/crates/jsonschema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema" -version = "0.26.2" +version = "0.27.0" description = "JSON schema validaton library" keywords = ["jsonschema", "validation"] categories = ["web-programming"] @@ -36,7 +36,7 @@ reqwest = { version = "0.12", features = [ "blocking", "json", ], default-features = false, optional = true } -referencing = { version = "0.26.2", path = "../jsonschema-referencing" } +referencing = { version = "0.27.0", path = "../jsonschema-referencing" } serde.workspace = true serde_json.workspace = true uuid-simd = "0.8"