From 5580ae82f72f410a89b812b3694569b70f497bea Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Wed, 2 Oct 2024 06:43:41 +0100 Subject: [PATCH] release: 1.10.2 --- .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 71b54cc9..cf707116 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.10.1 +current_version = 1.10.2 message = release: {new_version} [bumpversion:file:pyproject.toml] diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ea13eb..340d9b67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 1.10.2 (2024-10-01) +## 1.10.2 (2024-10-02) ### Fixed - Fix deprecation warning from use of `wheel.bdist_wheel`. diff --git a/pyproject.toml b/pyproject.toml index 1754410f..7dfb36e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "setuptools-rust" -version = "1.10.1" +version = "1.10.2" 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 c0daa39e..be5a2f68 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.10.1" +__version__ = version = "1.10.2" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )