From 51c85f2dd115d0b1bd2b11ed1537b7c720cf929f Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Thu, 26 Mar 2026 07:27:58 +0000 Subject: [PATCH] release: 1.12.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- setuptools_rust/version.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c017edbe..1c304ac2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.12.0 +current_version = 1.12.1 message = release: {new_version} [bumpversion:file:pyproject.toml] diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c65c251..b4973c76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.12.1 (2026-03-26) +- Migrate to trusted publishing. [#581](https://github.com/PyO3/setuptools-rust/pull/581) +- Strip target suffix for cargo-zigbuild compatibility. [#534](https://github.com/PyO3/setuptools-rust/pull/534) + ## 1.12.0 (2025-08-29) - Set `PYO3_BUILD_EXTENSION_MODULE` environment variable when building PyO3 extensions. [#540](https://github.com/PyO3/setuptools-rust/pull/540) diff --git a/pyproject.toml b/pyproject.toml index 79be14ad..6a3f3541 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "setuptools-rust" -version = "1.12.0" +version = "1.12.1" description = "Setuptools Rust extension plugin" readme = "README.md" requires-python = ">=3.9" diff --git a/setuptools_rust/version.py b/setuptools_rust/version.py index 7f2ff1f3..360400b3 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.12.0" +__version__ = version = "1.12.1" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )