diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f3c9ef..0d60514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 0.8.1 (2024-10-31) + +This release fixes an issue with the previous release in which +`{app_name}_INSTALLER_GITHUB_BASE_URL` wouldn't respect the port specified by +the user. + # Version 0.8.0 (2024-10-31) This release adds support for overriding the GitHub API URL using new environment variables: diff --git a/Cargo.lock b/Cargo.lock index d2ac6e8..648bd63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -362,7 +362,7 @@ dependencies = [ [[package]] name = "axoupdater" -version = "0.8.0" +version = "0.8.1" dependencies = [ "axoasset", "axoprocess", @@ -383,7 +383,7 @@ dependencies = [ [[package]] name = "axoupdater-cli" -version = "0.8.0" +version = "0.8.1" dependencies = [ "axoasset", "axocli", diff --git a/Cargo.toml b/Cargo.toml index 555e5e5..659227c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["axoupdater", "axoupdater-cli"] resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.8.1" 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 fb27aaa..d758ecc 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.8.0", path = "../axoupdater", features = ["blocking"] } +axoupdater = { version = "=0.8.1", path = "../axoupdater", features = ["blocking"] } clap = { version = "4.5.20", features = ["derive"] } # errors