Skip to content

Commit

Permalink
release: 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Jul 26, 2024
1 parent d1f19bf commit 63e10f4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Version 0.7.0 (2024-07-25)

This release improves debugging for users who use axoupdater as a crate and who
disable printing stdout/stderr from the installer. If the installer runs but
fails, we now return a new error type which contains the stderr/stdout and exit
status from the underlying installer; this can be used by callers to help
identify what failed.

This release also introduces a debugging feature for the standalone installer.
It's now possible to override which installer to use by setting the
`AXOUPDATER_INSTALLER_PATH` environment variable to the path on disk of the
installer to use. A similar feature was already available to library users
using the `AxoUpdater::configure_installer_path` method.


# Version 0.6.9 (2024-07-18)

This release fixes a bug in which axoupdater could pick the wrong installer when handling releases containing more than one app.
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.6.9"
version = "0.7.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.6.9", path = "../axoupdater", features = ["blocking"] }
axoupdater = { version = "=0.7.0", path = "../axoupdater", features = ["blocking"] }
clap = { version = "4.5.9", features = ["derive"] }

# errors
Expand Down

0 comments on commit 63e10f4

Please sign in to comment.