diff --git a/CHANGELOG.md b/CHANGELOG.md index ef02b05..8664b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.16.0] - 2022-04-21 + ### Fixed - Library compilation with no default features. [#356](https://github.com/Stranger6667/jsonschema-rs/issues/356) @@ -388,7 +390,8 @@ - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.15.2...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.16.0...HEAD +[0.16.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.15.2...rust-v0.16.0 [0.15.2]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.15.1...rust-v0.15.2 [0.15.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.15.0...rust-v0.15.1 [0.15.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.14.0...rust-v0.15.0 diff --git a/README.md b/README.md index da8bd09..5b678ed 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Partially supported drafts (some keywords are not implemented): ```toml # Cargo.toml -jsonschema = "0.15" +jsonschema = "0.16" ``` To validate documents against some schema and get validation errors (if any): diff --git a/jsonschema/Cargo.toml b/jsonschema/Cargo.toml index c90998e..378a74a 100644 --- a/jsonschema/Cargo.toml +++ b/jsonschema/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "jsonschema" readme = "../README.md" repository = "https://github.com/Stranger6667/jsonschema-rs" -version = "0.15.2" +version = "0.16.0" categories = ["web-programming"]