diff --git a/Cargo.lock b/Cargo.lock index 397aa2d2c..9bd1437cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1272,13 +1272,14 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "lddtree" -version = "0.3.8" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "547a362ad16dead8837d5b30402a81b05bb57c352044389f8748f4f2dbd51914" +checksum = "9cd71f004036b2ea41763739528084d0d2a9dea4fda11816a31d67edb2bd239f" dependencies = [ "fs-err", "glob", "goblin", + "memmap2", ] [[package]] @@ -1409,7 +1410,7 @@ dependencies = [ [[package]] name = "maturin" -version = "1.10.2" +version = "1.11.0" dependencies = [ "anyhow", "base64", @@ -1494,6 +1495,15 @@ version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" +[[package]] +name = "memmap2" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" +dependencies = [ + "libc", +] + [[package]] name = "mimalloc" version = "0.1.48" diff --git a/Cargo.toml b/Cargo.toml index 9a1e3ee6b..3029e3ac1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["konstin ", "messense "] name = "maturin" -version = "1.10.2" +version = "1.11.0" description = "Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages" exclude = [ "test-crates/**/*", @@ -78,7 +78,7 @@ python-pkginfo = "0.6.6" textwrap = "0.16.1" ignore = "0.4.20" itertools = "0.14.0" -lddtree = "0.3.8" +lddtree = "0.4.0" cc = "1.0.88" dunce = "1.0.2" normpath = "1.1.1" diff --git a/Changelog.md b/Changelog.md index 6a24b37c7..42d5abdc1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,7 +2,12 @@ ## Unreleased +## [1.11.0] + * Refactor `ModuleWriter` to be easier to implement and use +* Add Android cross compilation support, fix wheel tags for Android +* Update generate-ci to macos-15-intel and add windows arm support +* Deprecate 'upload' and 'publish' CLI commands ## [1.10.2] @@ -1135,7 +1140,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.10.2...HEAD +[Unreleased]: https://github.com/pyo3/maturin/compare/v1.11.0...HEAD +[1.11.0]: https://github.com/pyo3/maturin/compare/v1.10.2...v1.11.0 [1.10.2]: https://github.com/pyo3/maturin/compare/v1.10.1...v1.10.2 [1.10.1]: https://github.com/pyo3/maturin/compare/v1.10.0...v1.10.1 [1.10.0]: https://github.com/pyo3/maturin/compare/v1.9.6...v1.10.0