diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 66099f2..6b22c6e 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -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 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index e38401f..2f5fd31 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -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. diff --git a/bench_helpers/Cargo.toml b/bench_helpers/Cargo.toml index f145862..ab3ebdc 100644 --- a/bench_helpers/Cargo.toml +++ b/bench_helpers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bench_helpers" version = "0.1.0" -authors = ["dmitry.dygalo "] +authors = ["Dmitry Dygalo "] edition = "2021" license = "MIT" diff --git a/bindings/python/CHANGELOG.md b/bindings/python/CHANGELOG.md index 54be55a..04b3282 100644 --- a/bindings/python/CHANGELOG.md +++ b/bindings/python/CHANGELOG.md @@ -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 diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index e10bf2c..d86b87e 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jsonschema-python" -version = "0.17.1" -authors = ["Dmitry Dygalo "] +version = "0.17.2" +authors = ["Dmitry Dygalo "] edition = "2021" license = "MIT" readme = "README.rst"