Skip to content

Commit d72e9c6

Browse files
authored
Merge pull request #366 from PyO3/release-1.8.0
release: 1.8.0
2 parents 2f83f51 + 558d7eb commit d72e9c6

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

77
[bumpversion:file:pyproject.toml]

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.8.0 (2023-10-26)
44
### Packaging
55
- Drop support for Python 3.7. [#357](https://github.com/PyO3/setuptools-rust/pull/357)
66
- Remove direct imports from `pkg_resources`. [#359](https://github.com/PyO3/setuptools-rust/pull/359)

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.7.0"
3+
version = "1.8.0"
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.7.0"
1+
__version__ = version = "1.8.0"
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)