Skip to content

Commit 5d30a72

Browse files
committed
release: 1.6.0
1 parent 6580402 commit 5d30a72

File tree

4 files changed

+7
-5
lines changed

4 files changed

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

77
[bumpversion:file:setup.cfg]

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## 1.6.0 (2023-04-27)
4+
### Changed
5+
- Prefer passing `--crate-type` option to cargo if "toolchain >= 1.64". [#322](https://github.com/PyO3/setuptools-rust/pull/322)
6+
47
### Fixed
58
- Fix a bug where rebuilding the library would cause any running processes using it to segfault. [#295](https://github.com/PyO3/setuptools-rust/pull/295)
69
- Fix `setup.cfg` format for compatibility with "poetry==1.4.0". [#319](https://github.com/PyO3/setuptools-rust/pull/319)
7-
- Fix to use `--crate-type` option of cargo if "toolchain >= 1.64". [#322](https://github.com/PyO3/setuptools-rust/pull/322)
810

911
## 1.5.2 (2022-09-19)
1012
### Fixed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = setuptools-rust
3-
version = 1.5.2
3+
version = 1.6.0
44
author = Nikolay Kim
55
author_email = [email protected]
66
license = MIT

setuptools_rust/version.py

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