From 3c8492180baf5e4a6ed4738aabe2698f5d67b76a Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Wed, 18 Sep 2024 23:05:48 +0200 Subject: [PATCH] chore(python): Release 0.20.0 Signed-off-by: Dmitry Dygalo --- crates/jsonschema-py/CHANGELOG.md | 7 +++++-- crates/jsonschema-py/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/crates/jsonschema-py/CHANGELOG.md b/crates/jsonschema-py/CHANGELOG.md index 1530d3ef..1d459014 100644 --- a/crates/jsonschema-py/CHANGELOG.md +++ b/crates/jsonschema-py/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.20.0] - 2024-09-18 + ### Added - New draft-specific validator classes: `Draft4Validator`, `Draft6Validator`, `Draft7Validator`, `Draft201909Validator`, and `Draft202012Validator`. @@ -397,8 +399,9 @@ ## 0.1.0 - 2020-06-09 - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.19.1...HEAD -[0.19.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.19.0...python-v0.19.1 +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.20.0...HEAD +[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.19.1...python-v0.20.0 +[0.19.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.19.0...python-v0.19.1 [0.19.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.18.3...python-v0.19.0 [0.18.3]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.18.2...python-v0.18.3 [0.18.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.18.1...python-v0.18.2 diff --git a/crates/jsonschema-py/Cargo.toml b/crates/jsonschema-py/Cargo.toml index a2e45d49..54259581 100644 --- a/crates/jsonschema-py/Cargo.toml +++ b/crates/jsonschema-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-py" -version = "0.19.1" +version = "0.20.0" description = "A high-performance JSON Schema validator for Python" keywords = ["jsonschema", "validation"] categories = ["web-programming"]