Skip to content

Commit 2df6e32

Browse files
committed
Prepare ABQ 1.8.1
1 parent 56f79ae commit 2df6e32

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/build_and_upload.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ jobs:
6969
architecture: aarch64
7070
cross-target: "aarch64-unknown-linux-musl"
7171
container: messense/rust-musl-cross:aarch64-musl@sha256:777bd4c61179c38dc213bb8472500584646d28fd4a7c3e0b30b9ef70cb446d58
72-
- runs-on: macos-11 # use an older version for broader osx support
72+
- runs-on: macos-12 # use an older version for broader osx support
7373
deprecated-platform: darwin_x86-64
7474
os: darwin
7575
architecture: x86_64
7676
cross-target: ""
77-
- runs-on: macos-11 # first OS X to support arm64 -- so the first os for cross compilation
77+
- runs-on: macos-12 # first OS X to support arm64 -- so the first os for cross compilation
7878
deprecated-platform: darwin_aarch64
7979
os: darwin
8080
architecture: aarch64

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.8.1
2+
3+
ABQ 1.8.1 improves the error messaging when attempting to retry a run that has been cancelled.
4+
15
## 1.8.0
26

37
ABQ 1.8.0 is a minor release.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/abq_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "abq"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
edition = "2021"
55

66
[dependencies]

crates/abq_cli/tests/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2297,7 +2297,7 @@ test_all_network_config_options! {
22972297

22982298
assert_eq!(exit_status.code().unwrap(), 101, "STDOUT:\n{stdout}\nSTDERR:\n{stderr}");
22992299
assert!(
2300-
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."),
2300+
stderr.contains("This run was cancelled because a worker received a cancellation signal while still working on tests."),
23012301
"STDOUT:\n{stdout}\nSTDERR:\n{stderr}"
23022302
);
23032303

0 commit comments

Comments
 (0)