diff --git a/CHANGELOG.md b/CHANGELOG.md index 7db41550..c804cce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.28.1] - 2024-12-31 + ### Fixed - Handle fragment references within `$id`-anchored subschemas. [#640](https://github.com/Stranger6667/jsonschema/issues/640) @@ -773,7 +775,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.28.0...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.1...HEAD +[0.28.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.0...rust-v0.28.1 [0.28.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.1...rust-v0.28.0 [0.27.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.0...rust-v0.27.1 [0.27.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.2...rust-v0.27.0 diff --git a/crates/jsonschema-cli/Cargo.toml b/crates/jsonschema-cli/Cargo.toml index ab934638..09b5e64a 100644 --- a/crates/jsonschema-cli/Cargo.toml +++ b/crates/jsonschema-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-cli" -version = "0.28.0" +version = "0.28.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.28.0", path = "../jsonschema/" } +jsonschema = { version = "0.28.1", path = "../jsonschema/" } serde_json.workspace = true [[bin]] diff --git a/crates/jsonschema-referencing/Cargo.toml b/crates/jsonschema-referencing/Cargo.toml index ad5f1b4e..9fb169e6 100644 --- a/crates/jsonschema-referencing/Cargo.toml +++ b/crates/jsonschema-referencing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "referencing" -version = "0.28.0" +version = "0.28.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 bb8a5139..ef1ed9ab 100644 --- a/crates/jsonschema/Cargo.toml +++ b/crates/jsonschema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema" -version = "0.28.0" +version = "0.28.1" 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.28.0", path = "../jsonschema-referencing" } +referencing = { version = "0.28.1", path = "../jsonschema-referencing" } serde.workspace = true serde_json.workspace = true uuid-simd = "0.8"