Skip to content

Commit cc5c233

Browse files
authored
release: 1.11.1 (#529)
1 parent faa610d commit cc5c233

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = 1.11.0
4+
current_version = 1.11.1
55
message = release: {new_version}
66

77
[bumpversion:file:pyproject.toml]

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.11.1 (2025-04-04)
4+
### Fixed
5+
- Fix finding cargo artifacts when filenames are empty. [#521](https://github.com/PyO3/setuptools-rust/pull/521)
6+
37
## 1.11.0 (2025-03-14)
48
### Packaging
59
- Drop support for Python 3.8. [#479](https://github.com/PyO3/setuptools-rust/pull/479)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "setuptools-rust"
3-
version = "1.11.0"
3+
version = "1.11.1"
44
description = "Setuptools Rust extension plugin"
55
readme = "README.md"
66
requires-python = ">=3.9"

setuptools_rust/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = version = "1.11.0"
1+
__version__ = version = "1.11.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)