chore(rust): Release 0.6.1

This commit is contained in:
Dmitry Dygalo 2021-03-26 10:02:13 +01:00
parent a4658ddde5
commit 2f4a3577d7
No known key found for this signature in database
GPG Key ID: E2FDD4885D799724
3 changed files with 6 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## [Unreleased]
## [0.6.1] - 2021-03-26
### Fixed
- Incorrect handling of `\w` and `\W` character groups in `pattern` keywords. [#180](https://github.com/Stranger6667/jsonschema-rs/issues/180)
@ -147,7 +149,8 @@
- Initial public release
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.6.0...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.6.1...HEAD
[0.6.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.6.0...rust-v0.6.1
[0.6.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.5.0...rust-v0.6.0
[0.5.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.4.3...rust-v0.5.0
[0.4.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.4.2...rust-v0.4.3

View File

@ -3,7 +3,7 @@
[![ci](https://github.com/Stranger6667/jsonschema-rs/workflows/ci/badge.svg)](https://github.com/Stranger6667/jsonschema-rs/actions)
[![codecov](https://codecov.io/gh/Stranger6667/jsonschema-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/Stranger6667/jsonschema-rs)
[![Crates.io](https://img.shields.io/crates/v/jsonschema.svg)](https://crates.io/crates/jsonschema)
[![docs.rs](https://docs.rs/jsonschema/badge.svg?version=0.6.0)](https://docs.rs/jsonschema/0.6.0/jsonschema/)
[![docs.rs](https://docs.rs/jsonschema/badge.svg?version=0.6.1)](https://docs.rs/jsonschema/0.6.1/jsonschema/)
[![gitter](https://img.shields.io/gitter/room/Stranger6667/jsonschema-rs.svg)](https://gitter.im/Stranger6667/jsonschema-rs)
A JSON Schema validator implementation. It compiles schema into a validation tree to have validation as fast as possible.

View File

@ -1,6 +1,6 @@
[package]
name = "jsonschema"
version = "0.6.0"
version = "0.6.1"
authors = ["dmitry.dygalo <dadygalo@gmail.com>"]
edition = "2018"
license = "MIT"