Skip to content

Commit

Permalink
Merge pull request #146 from axodotdev/v0_6_9
Browse files Browse the repository at this point in the history
release: 0.6.9
  • Loading branch information
mistydemeo authored Jul 18, 2024
2 parents 99064f3 + 45ce2a8 commit 2b39d95
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# we specify bash to get pipefail; it guards against the `curl` command
# failing. otherwise `sh` won't catch that `curl` returned non-0
shell: bash
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.18.0/cargo-dist-installer.sh | sh"
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.19.1/cargo-dist-installer.sh | sh"
- name: Cache cargo-dist
uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 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.


# Version 0.6.8 (2024-07-05)

This release updates cargo-dist.
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.

4 changes: 2 additions & 2 deletions 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.8"
version = "0.6.9"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/axodotdev/axoupdater"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/axodotdev/axoupdater"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.18.0"
cargo-dist-version = "0.19.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
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.8", path = "../axoupdater", features = ["blocking"] }
axoupdater = { version = "=0.6.9", path = "../axoupdater", features = ["blocking"] }
clap = { version = "4.5.7", features = ["derive"] }

# errors
Expand Down

0 comments on commit 2b39d95

Please sign in to comment.