Skip to content

Commit 8eacf2d

Browse files
committed
chore(python): Release 0.17.2
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 8193c2c commit 8eacf2d

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.github/workflows/python-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: macos-12
5050
strategy:
5151
matrix:
52-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
52+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
5353
steps:
5454
- uses: actions/checkout@v3
5555
- uses: actions/setup-python@v4
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: macos-12
8181
strategy:
8282
matrix:
83-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
83+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
8484
steps:
8585
- uses: actions/checkout@v3
8686
- uses: actions/setup-python@v4
@@ -96,7 +96,7 @@ jobs:
9696
- name: Build wheels - universal2
9797
uses: messense/maturin-action@v1
9898
with:
99-
args: --release -m bindings/python/Cargo.toml --universal2 --out dist --interpreter ${{ matrix.python-version }}
99+
args: --release -m bindings/python/Cargo.toml --target universal2-apple-darwin --out dist --interpreter ${{ matrix.python-version }}
100100
- name: Install built wheel - universal2
101101
run: |
102102
pip install dist/${{ env.PACKAGE_NAME }}-*universal2.whl --force-reinstall
@@ -110,7 +110,7 @@ jobs:
110110
runs-on: windows-2022
111111
strategy:
112112
matrix:
113-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
113+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
114114
target: [ x64, x86 ]
115115
steps:
116116
- uses: actions/checkout@v3
@@ -143,7 +143,7 @@ jobs:
143143
runs-on: ubuntu-20.04
144144
strategy:
145145
matrix:
146-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
146+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
147147
target: [ x86_64, i686, aarch64 ]
148148
steps:
149149
- uses: actions/checkout@v3

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at [email protected]. All
58+
reported by contacting the project team at [email protected]. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

bench_helpers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bench_helpers"
33
version = "0.1.0"
4-
authors = ["dmitry.dygalo <[email protected]>"]
4+
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
66
license = "MIT"
77

bindings/python/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.17.2] - 2024-03-03
6+
57
### Added
68

79
- Support for Python 3.12 [#439](https://github.com/Stranger6667/jsonschema-rs/issues/439)
@@ -312,7 +314,8 @@
312314
## 0.1.0 - 2020-06-09
313315
- Initial public release
314316

315-
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.17.1...HEAD
317+
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.17.2...HEAD
318+
[0.17.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.17.1...python-v0.17.2
316319
[0.17.1]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.3...python-v0.17.1
317320
[0.16.3]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.2...python-v0.16.3
318321
[0.16.2]: https://github.com/Stranger6667/jsonschema-rs/compare/python-v0.16.1...python-v0.16.2

bindings/python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jsonschema-python"
3-
version = "0.17.1"
4-
authors = ["Dmitry Dygalo <[email protected]>"]
3+
version = "0.17.2"
4+
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2021"
66
license = "MIT"
77
readme = "README.rst"

0 commit comments

Comments
 (0)