Skip to content

Commit c5fd4ce

Browse files
authored
Release v1.8.6 (#2601)
1 parent 2addc27 commit c5fd4ce

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["konstin <[email protected]>", "messense <[email protected]>"]
33
name = "maturin"
4-
version = "1.8.5"
4+
version = "1.8.6"
55
description = "Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages"
66
exclude = [
77
"test-crates/**/*",

Changelog.md

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

3+
## [1.8.6]
4+
5+
* Print a message when overriding platform tag from `_PYTHON_HOST_PLATFORM` in [#2594](https://github.com/PyO3/maturin/pull/2594)
6+
* Use the current python interpreter's version when the abi3 feature is set with no explicit version in [#2597](https://github.com/PyO3/maturin/pull/2597)
7+
38
## [1.8.5]
49

510
* Fix release CI build
@@ -1064,8 +1069,9 @@ points-0.1.0-py2.py3-none-manylinux1_x86_64.whl | 2,8M | 752K | 85K
10641069

10651070
* Initial Release
10661071

1067-
[Unreleased]: https://github.com/pyo3/maturin/compare/v1.8.5...HEAD
1068-
[1.8.4]: https://github.com/pyo3/maturin/compare/v1.8.4...v1.8.5
1072+
[Unreleased]: https://github.com/pyo3/maturin/compare/v1.8.6...HEAD
1073+
[1.8.6]: https://github.com/pyo3/maturin/compare/v1.8.5...v1.8.6
1074+
[1.8.5]: https://github.com/pyo3/maturin/compare/v1.8.4...v1.8.5
10691075
[1.8.4]: https://github.com/pyo3/maturin/compare/v1.8.3...v1.8.4
10701076
[1.8.3]: https://github.com/pyo3/maturin/compare/v1.8.2...v1.8.3
10711077
[1.8.2]: https://github.com/pyo3/maturin/compare/v1.8.1...v1.8.2

pyproject.toml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Workaround to bootstrap maturin on non-manylinux platforms
22
[build-system]
3-
requires = ["setuptools", "tomli>=1.1.0 ; python_version<'3.11'", "setuptools-rust"]
3+
requires = [
4+
"setuptools",
5+
"tomli>=1.1.0 ; python_version<'3.11'",
6+
"setuptools-rust>=1.11.0",
7+
]
48
backend-path = ["maturin"]
59
build-backend = "bootstrap"
610

@@ -18,17 +22,11 @@ classifiers = [
1822
"Programming Language :: Python :: Implementation :: PyPy",
1923
]
2024
dependencies = ["tomli>=1.1.0 ; python_version<'3.11'"]
21-
dynamic = [
22-
"version"
23-
]
25+
dynamic = ["version"]
2426

2527
[project.optional-dependencies]
26-
zig = [
27-
"ziglang>=0.10.0,<0.13.0",
28-
]
29-
patchelf = [
30-
"patchelf",
31-
]
28+
zig = ["ziglang>=0.10.0,<0.13.0"]
29+
patchelf = ["patchelf"]
3230

3331
[project.urls]
3432
"Source Code" = "https://github.com/PyO3/maturin"

0 commit comments

Comments
 (0)