Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.8.0 #202

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Version 0.8.0 (2024-10-31)

This release adds support for overriding the GitHub API URL using new environment variables:

* `{app_name}_INSTALLER_GITHUB_BASE_URL`
* `{app_name}_INSTALLER_GHE_BASE_URL`

For more information, see the [dist installer docs](https://opensource.axo.dev/cargo-dist/book/installers/usage.html#artifact-location).

- impl
- @gaborbernat [Allow changing the GitHub API base URL via the INSTALLER_DOWNLOAD_URL env var](https://github.com/axodotdev/axoupdater/pull/199)
- @mistydemeo [feat: use new custom env vars](https://github.com/axodotdev/axoupdater/pull/201)

# Version 0.7.3 (2024-10-22)

This release contains improvements on Windows, ensuring that temporary files and
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["axoupdater", "axoupdater-cli"]
resolver = "2"

[workspace.package]
version = "0.7.3"
version = "0.8.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/axodotdev/axoupdater"
Expand Down
2 changes: 1 addition & 1 deletion axoupdater-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tls_native_roots = ["axoupdater/tls_native_roots"]

[dependencies]
axocli = "0.2.0"
axoupdater = { version = "=0.7.3", path = "../axoupdater", features = ["blocking"] }
axoupdater = { version = "=0.8.0", path = "../axoupdater", features = ["blocking"] }
clap = { version = "4.5.20", features = ["derive"] }

# errors
Expand Down
Loading