diff --git a/bindings/python/CHANGELOG.md b/bindings/python/CHANGELOG.md index c386aa5..964bc99 100644 --- a/bindings/python/CHANGELOG.md +++ b/bindings/python/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.16.2] - 2023-01-14 + ### Added - Support for Python 3.11 @@ -284,7 +286,8 @@ ## 0.1.0 - 2020-06-09 - Initial public release -[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.1...HEAD +[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.2...HEAD +[0.16.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.1...python-v0.16.2 [0.16.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.0...python-v0.16.1 [0.16.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.14.0...python-v0.16.0 [0.14.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.13.1...python-v0.14.0 diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index d731b1c..62d86e9 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonschema-python" -version = "0.16.1" +version = "0.16.2" authors = ["Dmitry Dygalo "] edition = "2021" license = "MIT" diff --git a/bindings/python/setup.py b/bindings/python/setup.py index a52ca16..a20ef48 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -20,7 +20,7 @@ except ImportError: def call_setup(): setup( name="jsonschema_rs", - version="0.16.1", + version="0.16.2", packages=["jsonschema_rs"], description="Fast JSON Schema validation for Python implemented in Rust", long_description=open("README.rst", encoding="utf-8").read(),