diff --git a/CHANGELOG.md b/CHANGELOG.md index 82e9e99f..22e19ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.19.1] - 2024-09-15 + ### Fixed - `ipv4` format validation. [#512](https://github.com/Stranger6667/jsonschema-rs/issues/512) @@ -503,7 +505,8 @@ - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.1...HEAD +[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 [0.18.2]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.1...rust-v0.18.2 diff --git a/crates/jsonschema-cli/Cargo.toml b/crates/jsonschema-cli/Cargo.toml index bf9e9b30..072aa534 100644 --- a/crates/jsonschema-cli/Cargo.toml +++ b/crates/jsonschema-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-cli" -version = "0.19.0" +version = "0.19.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.19.0", path = "../jsonschema/" } +jsonschema = { version = "0.19.1", path = "../jsonschema/" } serde_json.workspace = true [[bin]] diff --git a/crates/jsonschema/Cargo.toml b/crates/jsonschema/Cargo.toml index 3afe6f82..cb902617 100644 --- a/crates/jsonschema/Cargo.toml +++ b/crates/jsonschema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema" -version = "0.19.0" +version = "0.19.1" description = "JSON schema validaton library" keywords = ["jsonschema", "validation"] categories = ["web-programming"]