Skip to content

Commit ce6e74c

Browse files
committed
release: 1.5.1
1 parent 13fa941 commit ce6e74c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.5.0
4+
current_version = 1.5.1
55
message = release: {new_version}
66

77
[bumpversion:file:setup.cfg]

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 1.5.1 (2022-08-14)
44
### Fixed
55
- Fix regression in `get_lib_name` crashing since 1.5.0. [#280](https://github.com/PyO3/setuptools-rust/pull/280)
66
- Fix regression in `Binding.Exec` builds with multiple executables not finding built executables since 1.5.0. [#283](https://github.com/PyO3/setuptools-rust/pull/283)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = setuptools-rust
3-
version = 1.5.0
3+
version = 1.5.1
44
author = Nikolay Kim
55
author_email = fafhrd91@gmail.com
66
license = MIT

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.5.0"
1+
__version__ = version = "1.5.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)