Skip to content

Commit

Permalink
Prepare ABQ 1.8.1 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves authored Oct 4, 2024
1 parent 56f79ae commit 318ecb8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
architecture: aarch64
cross-target: "aarch64-unknown-linux-musl"
container: messense/rust-musl-cross:aarch64-musl@sha256:777bd4c61179c38dc213bb8472500584646d28fd4a7c3e0b30b9ef70cb446d58
- runs-on: macos-11 # use an older version for broader osx support
- runs-on: macos-12 # use an older version for broader osx support
deprecated-platform: darwin_x86-64
os: darwin
architecture: x86_64
cross-target: ""
- runs-on: macos-11 # first OS X to support arm64 -- so the first os for cross compilation
- runs-on: macos-12 # first OS X to support arm64 -- so the first os for cross compilation
deprecated-platform: darwin_aarch64
os: darwin
architecture: aarch64
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.8.1

ABQ 1.8.1 improves the error messaging when attempting to retry a run that has been cancelled.

## 1.8.0

ABQ 1.8.0 is a minor release.
Expand Down
2 changes: 1 addition & 1 deletion 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 crates/abq_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abq"
version = "1.8.0"
version = "1.8.1"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/abq_cli/tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2297,7 +2297,7 @@ test_all_network_config_options! {

assert_eq!(exit_status.code().unwrap(), 101, "STDOUT:\n{stdout}\nSTDERR:\n{stderr}");
assert!(
stderr.contains("Error: This ABQ run was cancelled. When an ABQ run is cancelled, it can no longer be retried. You must start a run with a new run ID instead.\nThis run was cancelled because a worker received a cancellation signal while still working on tests."),
stderr.contains("This run was cancelled because a worker received a cancellation signal while still working on tests."),
"STDOUT:\n{stdout}\nSTDERR:\n{stderr}"
);

Expand Down

0 comments on commit 318ecb8

Please sign in to comment.