Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.8.2 #2469

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["konstin <konstin@mailbox.org>", "messense <messense@icloud.com>"]
name = "maturin"
version = "1.8.1"
version = "1.8.2"
description = "Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages"
exclude = [
"test-crates/**/*",
Expand Down
13 changes: 12 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [1.8.2]

* Exclude packages not in the dependency tree when finding bindings in [#2426](https://github.com/PyO3/maturin/pull/2426)
* Use uv automatically when running maturin develop inside uv-created virtualenv in [#2433](https://github.com/PyO3/maturin/pull/2433)
* Consider abi3 minor version when resolving Python interpreters in [#2437](https://github.com/PyO3/maturin/pull/2437)
* Handle archived dylibs on AIX in [#2442](https://github.com/PyO3/maturin/pull/2442)
* Fix unnecessary rebuilds due to pyo3 config file modified time change in [#2446](https://github.com/PyO3/maturin/pull/2446)
* Fix the name of the .data directory in the generated wheel in [#2449](https://github.com/PyO3/maturin/pull/2449)
* Update minimal manylinux version for loongarch64 in [#2451](https://github.com/PyO3/maturin/pull/2451)

## [1.8.1]

* Downgrade invalid version info in `pyproject.toml` error to warning in [#2417](https://github.com/PyO3/maturin/pull/2417)
Expand Down Expand Up @@ -1031,7 +1041,8 @@ points-0.1.0-py2.py3-none-manylinux1_x86_64.whl | 2,8M | 752K | 85K

* Initial Release

[Unreleased]: https://github.com/pyo3/maturin/compare/v1.8.1...HEAD
[Unreleased]: https://github.com/pyo3/maturin/compare/v1.8.2...HEAD
[1.8.2]: https://github.com/pyo3/maturin/compare/v1.8.1...v1.8.2
[1.8.1]: https://github.com/pyo3/maturin/compare/v1.8.0...v1.8.1
[1.8.0]: https://github.com/pyo3/maturin/compare/v1.7.8...v1.8.0
[1.7.8]: https://github.com/pyo3/maturin/compare/v1.7.7...v1.7.8
Expand Down
Loading