diff --git a/CHANGELOG.md b/CHANGELOG.md index e6133c181..d5d4fb105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.1.44 + +### Release + +Reverts "Use manylinux: auto to enable `musllinux_1_2` aarch64 builds ([#3444](https://github.com/astral-sh/uv/pull/3444))" + +The manylinux change appeared to introduce SSL errors when building aarch64 Docker images, e.g., + +> invalid peer certificate: BadSignature + +The v0.1.42 behavior for aarch64 manylinux builds is restored in this release. + +See [#3576](https://github.com/astral-sh/uv/pull/3576) + ## 0.1.43 ### Enhancements @@ -13,7 +27,7 @@ ### Release -- Use manylinux: auto to enable musllinux_1_2 aarch64 builds ([#3444](https://github.com/astral-sh/uv/pull/3444)) +- Use manylinux: auto to enable `musllinux_1_2` aarch64 builds ([#3444](https://github.com/astral-sh/uv/pull/3444)) - Enable musllinux_1_1 wheels ([#3523](https://github.com/astral-sh/uv/pull/3523)) ### Bug fixes diff --git a/Cargo.lock b/Cargo.lock index e8c17f964..c5e026348 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4482,7 +4482,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.1.43" +version = "0.1.44" dependencies = [ "anstream", "anyhow", @@ -5065,7 +5065,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.43" +version = "0.1.44" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 1772ad57f..45a864e0a 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.43" +version = "0.1.44" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 78467a027..7a681a372 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.43" +version = "0.1.44" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 9fe39483e..e57db14bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.43" +version = "0.1.44" description = "An extremely fast Python package installer and resolver, written in Rust." authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] requires-python = ">=3.8"