chore(python): Release 0.17.2

Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
This commit is contained in:
Dmitry Dygalo 2024-03-03 20:32:38 +01:00
parent 8193c2cb91
commit 8eacf2d9da
No known key found for this signature in database
GPG Key ID: 26834366E8FDCFEF
5 changed files with 13 additions and 10 deletions

View File

@ -49,7 +49,7 @@ jobs:
runs-on: macos-12
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
@ -80,7 +80,7 @@ jobs:
runs-on: macos-12
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
@ -96,7 +96,7 @@ jobs:
- name: Build wheels - universal2
uses: messense/maturin-action@v1
with:
args: --release -m bindings/python/Cargo.toml --universal2 --out dist --interpreter ${{ matrix.python-version }}
args: --release -m bindings/python/Cargo.toml --target universal2-apple-darwin --out dist --interpreter ${{ matrix.python-version }}
- name: Install built wheel - universal2
run: |
pip install dist/${{ env.PACKAGE_NAME }}-*universal2.whl --force-reinstall
@ -110,7 +110,7 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
target: [ x64, x86 ]
steps:
- uses: actions/checkout@v3
@ -143,7 +143,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
target: [ x86_64, i686, aarch64 ]
steps:
- uses: actions/checkout@v3

View File

@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at dadygalo@gmail.com. All
reported by contacting the project team at dmitry@dygalo.dev. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.

View File

@ -1,7 +1,7 @@
[package]
name = "bench_helpers"
version = "0.1.0"
authors = ["dmitry.dygalo <dadygalo@gmail.com>"]
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
edition = "2021"
license = "MIT"

View File

@ -2,6 +2,8 @@
## [Unreleased]
## [0.17.2] - 2024-03-03
### Added
- Support for Python 3.12 [#439](https://github.com/Stranger6667/jsonschema-rs/issues/439)
@ -312,7 +314,8 @@
## 0.1.0 - 2020-06-09
- Initial public release
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.17.1...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.17.2...HEAD
[0.17.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.17.1...python-v0.17.2
[0.17.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.3...python-v0.17.1
[0.16.3]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.2...python-v0.16.3
[0.16.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.1...python-v0.16.2

View File

@ -1,7 +1,7 @@
[package]
name = "jsonschema-python"
version = "0.17.1"
authors = ["Dmitry Dygalo <dadygalo@gmail.com>"]
version = "0.17.2"
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
edition = "2021"
license = "MIT"
readme = "README.rst"