From 2e4ed40063c0f00bb1e3aa77a8b41ae8b67bff90 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Sat, 24 Feb 2024 14:14:16 +0000 Subject: [PATCH] release: 1.9.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- pyproject.toml | 2 +- setuptools_rust/version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c00a83a8..dcb92696 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.8.1 +current_version = 1.9.0 message = release: {new_version} [bumpversion:file:pyproject.toml] diff --git a/CHANGELOG.md b/CHANGELOG.md index 367818e6..ace982bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.9.0 (2024-02-24) ### Changed - Deprecate `py_limited_api` option to `RustExtension` in favour of always using `"auto"` to configure this from `bdist_wheel`. [#410](https://github.com/PyO3/setuptools-rust/pull/410) diff --git a/pyproject.toml b/pyproject.toml index 03452346..93f3530a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "setuptools-rust" -version = "1.8.1" +version = "1.9.0" description = "Setuptools Rust extension plugin" readme = "README.md" requires-python = ">=3.8" diff --git a/setuptools_rust/version.py b/setuptools_rust/version.py index f33e33b0..9063c8f1 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.8.1" +__version__ = version = "1.9.0" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )