diff --git a/CHANGELOG.md b/CHANGELOG.md index c86796143..9da668d78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ Nothing Yet! +# Version 0.7.2 (2024-01-15) + +This release contains a fix for certain ARM64 Linux builds. + +## Fixes + +Fixes a regression caused by an overly-strict check for the exit status of `ldd`. This primarily affected certain builds on ARM64 Linux and didn't affect builds on x86_64 Linux. + +* impl @gankra [fix: ignore ldd status](https://github.com/axodotdev/cargo-dist/pull/711) + + # Version 0.7.1 (2024-01-05) This release lowers the MSRV for people who install with cargo-install. diff --git a/Cargo.lock b/Cargo.lock index 861157301..4412e11ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,7 +335,7 @@ dependencies = [ [[package]] name = "cargo-dist" -version = "0.7.1" +version = "0.7.2" dependencies = [ "axoasset", "axocli", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "cargo-dist-schema" -version = "0.7.1" +version = "0.7.2" dependencies = [ "camino", "gazenot", diff --git a/cargo-dist-schema/Cargo.toml b/cargo-dist-schema/Cargo.toml index ac04df9d2..a70986672 100644 --- a/cargo-dist-schema/Cargo.toml +++ b/cargo-dist-schema/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cargo-dist-schema" description = "Schema information for cargo-dist's dist-manifest.json" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/axodotdev/cargo-dist" diff --git a/cargo-dist/Cargo.toml b/cargo-dist/Cargo.toml index e43cf91e3..53d739977 100644 --- a/cargo-dist/Cargo.toml +++ b/cargo-dist/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cargo-dist" description = "Shippable application packaging for Rust" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/axodotdev/cargo-dist" @@ -34,7 +34,7 @@ axocli = { version = "0.1.1", optional = true } # Features used by the cli and library axotag = "0.1.0" -cargo-dist-schema = { version = "=0.7.1", path = "../cargo-dist-schema" } +cargo-dist-schema = { version = "=0.7.2", path = "../cargo-dist-schema" } axoasset = { version = "0.6.1", features = ["json-serde", "toml-serde", "toml-edit", "compression"] } axoprocess = { version = "0.1.0" }