chore(python): Release 0.16.1

This commit is contained in:
Dmitry Dygalo 2022-10-20 16:23:16 +02:00
parent ec4f35f63a
commit 40498fe120
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.1] - 2022-10-20
### Changed
- Raise `ValueError` on validating dicts with non-string keys. [#386](https://github.com/Stranger6667/jsonschema-rs/issues/386)
@ -278,7 +280,8 @@
## 0.1.0 - 2020-06-09
- Initial public release
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.0...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.1...HEAD
[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
[0.13.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.13.0...python-v0.13.1

View File

@ -1,6 +1,6 @@
[package]
name = "jsonschema-python"
version = "0.16.0"
version = "0.16.1"
authors = ["Dmitry Dygalo <dadygalo@gmail.com>"]
edition = "2021"
license = "MIT"

View File

@ -20,7 +20,7 @@ except ImportError:
def call_setup():
setup(
name="jsonschema_rs",
version="0.16.0",
version="0.16.1",
description="Fast JSON Schema validation for Python implemented in Rust",
long_description=open("README.rst", encoding="utf-8").read(),
long_description_content_type="text/x-rst",