From ec7c2710843d3a786e9ff758f665144f811ad51d Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Tue, 22 Oct 2024 23:35:12 +0200 Subject: [PATCH] chore(rust): Release 0.24.1 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 3a1def73..e477b982 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.24.1] - 2024-10-21 + ### Fixed - Incomplete external reference resolution. @@ -677,7 +679,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.24.0...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.24.1...HEAD +[0.24.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.24.0...rust-v0.24.1 [0.24.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.23.0...rust-v0.24.0 [0.23.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.3...rust-v0.23.0 [0.22.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.2...rust-v0.22.3 diff --git a/crates/jsonschema-cli/Cargo.toml b/crates/jsonschema-cli/Cargo.toml index fc409673..55beb118 100644 --- a/crates/jsonschema-cli/Cargo.toml +++ b/crates/jsonschema-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-cli" -version = "0.24.0" +version = "0.24.1" 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.24.0", path = "../jsonschema/" } +jsonschema = { version = "0.24.1", path = "../jsonschema/" } serde_json.workspace = true [[bin]] diff --git a/crates/jsonschema-referencing/Cargo.toml b/crates/jsonschema-referencing/Cargo.toml index 68e879fe..292ff748 100644 --- a/crates/jsonschema-referencing/Cargo.toml +++ b/crates/jsonschema-referencing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "referencing" -version = "0.24.0" +version = "0.24.1" 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 b26906a1..5cfebebd 100644 --- a/crates/jsonschema/Cargo.toml +++ b/crates/jsonschema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema" -version = "0.24.0" +version = "0.24.1" description = "JSON schema validaton library" keywords = ["jsonschema", "validation"] categories = ["web-programming"] @@ -42,7 +42,7 @@ reqwest = { version = "0.12", features = [ "blocking", "json", ], default-features = false, optional = true } -referencing = { version = "0.24.0", path = "../jsonschema-referencing" } +referencing = { version = "0.24.1", path = "../jsonschema-referencing" } serde.workspace = true serde_json.workspace = true url.workspace = true