chore(rust): Release 0.16.0

This commit is contained in:
Dmitry Dygalo 2022-04-21 17:33:39 +02:00
parent bad741f771
commit 10530eccdd
No known key found for this signature in database
GPG Key ID: 0D78E60518FE18BB
3 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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):

View File

@ -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"]