diff --git a/.bumpversion.cfg b/.bumpversion.cfg index dcb92696..a4a3a393 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.9.0 +current_version = 1.10.0 message = release: {new_version} [bumpversion:file:pyproject.toml] diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e5e19bd..a67d067b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## Unreleased +## 1.10.0 (2024-07-01) ### Packaging +- Extend macOS build flags to iOS, tvOS and watchOS. [#436](https://github.com/PyO3/setuptools-rust/pull/436) - Support Python 3.13. [#446](https://github.com/PyO3/setuptools-rust/pull/446) ### Changed diff --git a/pyproject.toml b/pyproject.toml index 148d85bf..2edf73b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "setuptools-rust" -version = "1.9.0" +version = "1.10.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 9063c8f1..684c2ddb 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.9.0" +__version__ = version = "1.10.0" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )