From a2daacec8bf1c031c4cc00f8aead424319d9ac6d Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Fri, 26 Jun 2026 11:38:46 +0100 Subject: [PATCH 1/2] release: 1.13.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- setuptools_rust/version.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1c304ac2..290894da 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.12.1 +current_version = 1.13.0 message = release: {new_version} [bumpversion:file:pyproject.toml] diff --git a/CHANGELOG.md b/CHANGELOG.md index b4973c76..d53a7b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.13.0 (2026-06-26) +### Added +- Add `generated-files` option to `RustExtension` to copy files from the build script output directory to the wheel. [#574](https://github.com/PyO3/setuptools-rust/pull/574) + +### Fixed +- Add `-Zunstable-options` when querying rustc for information about custom JSON targets. [#587](https://github.com/PyO3/setuptools-rust/pull/587) + ## 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) diff --git a/pyproject.toml b/pyproject.toml index 6a3f3541..f9ffe273 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "setuptools-rust" -version = "1.12.1" +version = "1.13.0" 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 360400b3..4a49e494 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.12.1" +__version__ = version = "1.13.0" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) ) From 6f2e046995693455e29afda856563af893a76755 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Sat, 27 Jun 2026 22:33:29 +0100 Subject: [PATCH 2/2] correct release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d53a7b6d..ac6e7156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 1.13.0 (2026-06-26) +## 1.13.0 (2026-06-27) ### Added - Add `generated-files` option to `RustExtension` to copy files from the build script output directory to the wheel. [#574](https://github.com/PyO3/setuptools-rust/pull/574)