diff --git a/CHANGELOG.md b/CHANGELOG.md index 7516b466..0e79ee2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.18.0] - 2024-05-07 + ### Added - Custom keywords support. [#379](https://github.com/Stranger6667/jsonschema-rs/issues/379) @@ -449,7 +451,8 @@ - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.17.1...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.0...HEAD +[0.18.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.17.1...rust-v0.18.0 [0.17.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.17.0...rust-v0.17.1 [0.17.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.16.1...rust-v0.17.0 [0.16.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.16.0...rust-v0.16.1 diff --git a/README.md b/README.md index 4b67a2a9..8ca813da 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Partially supported drafts (some keywords are not implemented): ```toml # Cargo.toml -jsonschema = "0.17" +jsonschema = "0.18" ``` To validate documents against some schema and get validation errors (if any): diff --git a/jsonschema/Cargo.toml b/jsonschema/Cargo.toml index 55b8bc68..d0b171e6 100644 --- a/jsonschema/Cargo.toml +++ b/jsonschema/Cargo.toml @@ -18,7 +18,7 @@ license = "MIT" name = "jsonschema" readme = "../README.md" repository = "https://github.com/Stranger6667/jsonschema-rs" -version = "0.17.1" +version = "0.18.0" rust-version = "1.56.1" categories = ["web-programming"]