From 63981a8a1971a190ed8bc15e5ae11ff1abbeeeb8 Mon Sep 17 00:00:00 2001 From: Michael Overmeyer Date: Wed, 25 Oct 2023 14:55:10 -0400 Subject: [PATCH 1/2] Release v2.3.1 --- .github/workflows/build-wheels.yml | 2 +- CHANGELOG.md | 5 +++++ setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index fcac5a5..4e91ce1 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: requested_release_tag: - description: 'The tag to use for this release (e.g., `v2.3.0`)' + description: 'The tag to use for this release (e.g., `v2.3.1`)' required: true jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e926b..71038ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - [Unreleased](#unreleased) - [2.x.x](#2xx) + - [Version 2.3.1](#version-231) - [Version 2.3.0](#version-230) - [Version 2.2.0](#version-220) - [Version 2.1.3](#version-213) @@ -25,6 +26,10 @@ # 2.x.x +## Version 2.3.1 + +* Added Python 3.12 wheels + ## Version 2.3.0 * Added Python 3.11 support diff --git a/setup.py b/setup.py index 29a33f1..76fd6f9 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ os.environ["_CL_"] = "" os.environ["_CL_"] += " /WX" -VERSION = "2.3.0" +VERSION = "2.3.1" CISO8601_CACHING_ENABLED = int(os.environ.get('CISO8601_CACHING_ENABLED', '1') == '1') setup( From bec9253ccf09fcaa49f8ce4a0c51afbe6fc9c536 Mon Sep 17 00:00:00 2001 From: Michael Overmeyer Date: Fri, 27 Oct 2023 13:45:27 -0400 Subject: [PATCH 2/2] Bump version of vendored `cibuildwheel` --- .github/workflows/build-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 4e91ce1..e38826d 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -88,7 +88,7 @@ jobs: - uses: actions/checkout@v3 - name: Build wheels - uses: closeio/cibuildwheel@v2.11.3 + uses: closeio/cibuildwheel@v2.16.2 env: CIBW_SKIP: "pp*-macosx* *-win32 *-manylinux_i686" CIBW_ARCHS_MACOS: x86_64 arm64 universal2