diff --git a/CHANGELOG.md b/CHANGELOG.md index 6587f11..a657a36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 0.7.2 (2024-09-11) + +This release fixes a bug that caused axoupdater to return a confusing error +message if it attempted to load an install receipt containing a reference to an +install path which no longer exists. + # Version 0.7.1 (2024-08-28) This release improves compatibility with certain Windows configurations by setting the execution policy before running the new installer. A similar change is shipped in cargo-dist 0.21.2. diff --git a/Cargo.lock b/Cargo.lock index ff52083..a0cb74c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,7 +146,7 @@ dependencies = [ [[package]] name = "axoupdater" -version = "0.7.1" +version = "0.7.2" dependencies = [ "axoasset", "axoprocess", @@ -163,7 +163,7 @@ dependencies = [ [[package]] name = "axoupdater-cli" -version = "0.7.1" +version = "0.7.2" dependencies = [ "axoasset", "axocli", diff --git a/Cargo.toml b/Cargo.toml index 3b1e817..f32e781 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["axoupdater", "axoupdater-cli"] resolver = "2" [workspace.package] -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://github.com/axodotdev/axoupdater" diff --git a/axoupdater-cli/Cargo.toml b/axoupdater-cli/Cargo.toml index c8ddb5c..6d0fca5 100644 --- a/axoupdater-cli/Cargo.toml +++ b/axoupdater-cli/Cargo.toml @@ -14,7 +14,7 @@ tls_native_roots = ["axoupdater/tls_native_roots"] [dependencies] axocli = "0.2.0" -axoupdater = { version = "=0.7.1", path = "../axoupdater", features = ["blocking"] } +axoupdater = { version = "=0.7.2", path = "../axoupdater", features = ["blocking"] } clap = { version = "4.5.17", features = ["derive"] } # errors