Skip to content

Commit df30297

Browse files
committed
release: 1.10.1
1 parent 4b3d0c2 commit df30297

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = 1.10.0
4+
current_version = 1.10.1
55
message = release: {new_version}
66

77
[bumpversion:file:pyproject.toml]

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
### Unreleased
4-
3+
## 1.10.1 (2024-08-04)
4+
### Fixed
55
- Fix regression in 1.10.0 where editable builds would be built in release mode
66

7-
## 1.10.0 (2024-07-01)
7+
## 1.10.0 (2024-08-03)
88
### Packaging
99
- Extend macOS build flags to iOS, tvOS and watchOS. [#436](https://github.com/PyO3/setuptools-rust/pull/436)
1010
- Support Python 3.13. [#446](https://github.com/PyO3/setuptools-rust/pull/446)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "setuptools-rust"
3-
version = "1.10.0"
3+
version = "1.10.1"
44
description = "Setuptools Rust extension plugin"
55
readme = "README.md"
66
requires-python = ">=3.8"

setuptools_rust/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = version = "1.10.0"
1+
__version__ = version = "1.10.1"
22
__version_tuple__ = version_tuple = tuple(
33
map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split(".")))
44
)

0 commit comments

Comments
 (0)