chore(python): Release 0.14.0

This commit is contained in:
Dmitry Dygalo 2022-01-31 11:58:01 +01:00
parent 5f52908009
commit 778b424b3d
No known key found for this signature in database
GPG Key ID: 0D78E60518FE18BB
4 changed files with 7 additions and 4 deletions

View File

@ -2,6 +2,8 @@
## [Unreleased]
## [0.14.0] - 2022-01-31
### Added
- Support for resolving external schema files. [#76](https://github.com/Stranger6667/jsonschema-rs/issues/76)
@ -252,7 +254,8 @@
## 0.1.0 - 2020-06-09
- Initial public release
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.13.1...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.14.0...HEAD
[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
[0.13.0]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.12.1...python-v0.13.0
[0.12.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.12.0...python-v0.12.1

View File

@ -434,7 +434,7 @@ dependencies = [
[[package]]
name = "jsonschema-python"
version = "0.13.1"
version = "0.14.0"
dependencies = [
"built",
"jsonschema",

View File

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

View File

@ -20,7 +20,7 @@ except ImportError:
def call_setup():
setup(
name="jsonschema_rs",
version="0.13.1",
version="0.14.0",
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",