From 6a16b347d9f8058a9113c4d7b2c83ac724c441c7 Mon Sep 17 00:00:00 2001 From: messense Date: Thu, 1 Dec 2022 12:24:48 +0800 Subject: [PATCH 1/2] Release v0.14.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd917868a..a234822fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1459,7 +1459,7 @@ dependencies = [ [[package]] name = "maturin" -version = "0.14.2" +version = "0.14.3" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index d4b705bbe..455cf1d83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["konstin ", "messense "] name = "maturin" -version = "0.14.2" +version = "0.14.3" description = "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages" exclude = ["test-crates/**/*", "sysconfig/*", "test-data/*", "ci/*", "tests/*", "guide/*", ".github/*"] homepage = "https://github.com/pyo3/maturin" diff --git a/Changelog.md b/Changelog.md index ba2a8c5d9..0c52434bf 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.3] - 2022-12-01 + * Bump MSRV to 1.62.0 in [#1297](https://github.com/PyO3/maturin/pull/1297) * Fix build error when required features of bin target isn't enabled in [#1299](https://github.com/PyO3/maturin/pull/1299) * Fix wrong platform tag when building in i386 docker container on x86_64 host in [#1301](https://github.com/PyO3/maturin/pull/1301) @@ -764,7 +766,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/v0.14.2...HEAD +[Unreleased]: https://github.com/pyo3/maturin/compare/v0.14.3...HEAD +[0.14.3]: https://github.com/pyo3/maturin/compare/v0.14.3...v0.14.3 [0.14.2]: https://github.com/pyo3/maturin/compare/v0.14.1...v0.14.2 [0.14.1]: https://github.com/pyo3/maturin/compare/v0.14.0...v0.14.1 [0.14.0]: https://github.com/pyo3/maturin/compare/v0.13.7...v0.14.0 From 488ef5fed228386bede3011f1b87497facfec51f Mon Sep 17 00:00:00 2001 From: messense Date: Thu, 1 Dec 2022 13:46:39 +0800 Subject: [PATCH 2/2] Remove venvs and test-crate targets to free up disk space --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b51874647..91fa15874 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -171,6 +171,9 @@ jobs: run: echo "MATURIN_TEST_PYTHON=pypy3" >> $GITHUB_ENV - name: cargo test run: cargo nextest run --features password-storage + - name: free up disk space + shell: bash + run: rm -rf test-crates/venvs test-crates/targets - name: test cross compiling with zig shell: bash run: |