From 901ad6c4977961d500d7586237ca37b80aa1565a Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Thu, 24 Oct 2024 14:27:34 +0200 Subject: [PATCH] chore(python): Release 0.25.0 Signed-off-by: Dmitry Dygalo --- crates/jsonschema-py/CHANGELOG.md | 5 ++++- crates/jsonschema-py/Cargo.toml | 2 +- crates/jsonschema-py/README.md | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/crates/jsonschema-py/CHANGELOG.md b/crates/jsonschema-py/CHANGELOG.md index 7d66ad0f..cceb90be 100644 --- a/crates/jsonschema-py/CHANGELOG.md +++ b/crates/jsonschema-py/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.25.0] - 2024-10-24 + **Important:** This release removes deprecated old APIs. See the [Migration Guide](MIGRATION.md) for details on transitioning to the new API. ### Changed @@ -536,7 +538,8 @@ ## 0.1.0 - 2020-06-09 - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.24.3...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.25.0...HEAD +[0.25.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.24.3...python-v0.25.0 [0.24.3]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.24.2...python-v0.24.3 [0.24.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.24.1...python-v0.24.2 [0.24.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.24.0...python-v0.24.1 diff --git a/crates/jsonschema-py/Cargo.toml b/crates/jsonschema-py/Cargo.toml index 10f73eaf..2b3b4246 100644 --- a/crates/jsonschema-py/Cargo.toml +++ b/crates/jsonschema-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-py" -version = "0.24.3" +version = "0.25.0" description = "A high-performance JSON Schema validator for Python" keywords = ["jsonschema", "validation"] categories = ["web-programming"] diff --git a/crates/jsonschema-py/README.md b/crates/jsonschema-py/README.md index 1a6b1421..d167811b 100644 --- a/crates/jsonschema-py/README.md +++ b/crates/jsonschema-py/README.md @@ -37,7 +37,7 @@ for error in validator.iter_errors(instance): assert validator.is_valid(instance) ``` -> ⚠️ **Upgrading from pre-0.20.0?** Check our [Migration Guide](https://github.com/Stranger6667/jsonschema-rs/blob/master/crates/jsonschema-py/MIGRATION.md) for key changes. +> ⚠️ **Upgrading from older versions?** Check our [Migration Guide](https://github.com/Stranger6667/jsonschema-rs/blob/master/crates/jsonschema-py/MIGRATION.md) for key changes. ## Highlights