Skip to content

Commit

Permalink
Merge pull request #473 from PyO3/release-1.10.2
Browse files Browse the repository at this point in the history
release: 1.10.2
  • Loading branch information
davidhewitt authored Oct 2, 2024
2 parents 37dd294 + 5580ae8 commit 01d47e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion setuptools_rust/version.py
Original file line number Diff line number Diff line change
@@ -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(".")))
)

0 comments on commit 01d47e0

Please sign in to comment.