diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cf707116..ff136574 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.10.2 +current_version = 1.11.0 message = release: {new_version} [bumpversion:file:pyproject.toml] diff --git a/CHANGELOG.md b/CHANGELOG.md index b6ae06b4..9659fe84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.11.0 (2025-03-14) ### Packaging - Drop support for Python 3.8. [#479](https://github.com/PyO3/setuptools-rust/pull/479) - Support free-threaded Python. [#502](https://github.com/PyO3/setuptools-rust/pull/502) diff --git a/pyproject.toml b/pyproject.toml index 1f08d6d2..8bf6f52d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "setuptools-rust" -version = "1.10.2" +version = "1.11.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 be5a2f68..40e559fa 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.10.2" +__version__ = version = "1.11.0" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )