Skip to content

Commit

Permalink
feat: bump min required axoupdater
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Dec 19, 2024
1 parent c99c4f4 commit bb20795
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
7 changes: 3 additions & 4 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 @@ -22,7 +22,7 @@ axoproject = { version = "=0.26.1", path = "axoproject", default-features = fals

# first-party deps
axocli = { version = "0.2.0" }
axoupdater = { version = "0.8.2" }
axoupdater = { git = "https://github.com/axodotdev/axoupdater", rev = "959a8aefce2baec4e7ea9bdaa52ba7e90840019a" }
axotag = "0.2.0"
axoasset = { version = "1.2.0", features = ["json-serde", "toml-serde", "toml-edit", "yaml-serde", "compression", "remote"] }
axoprocess = { version = "0.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion cargo-dist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ fn run_build_step(
}

const AXOUPDATER_ASSET_ROOT: &str = "https://github.com/axodotdev/axoupdater/releases";
const AXOUPDATER_MINIMUM_VERSION: &str = "0.7.0";
const AXOUPDATER_MINIMUM_VERSION: &str = "0.9.0";

fn axoupdater_latest_asset_root() -> String {
format!("{AXOUPDATER_ASSET_ROOT}/latest/download")
Expand Down
2 changes: 2 additions & 0 deletions cargo-dist/tests/cli-tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ fn test_self_update() {
.map(|s| s == "selfupdate" || s == "all")
.unwrap_or(false)
{
std::env::remove_var("XDG_CONFIG_HOME");

let mut args = RuntestArgs {
app_name: "cargo-dist".to_owned(),
package: "cargo-dist".to_owned(),
Expand Down

0 comments on commit bb20795

Please sign in to comment.