From 24720ae79fbf85c144f09b98d47701613ea342c7 Mon Sep 17 00:00:00 2001 From: Michael Glass Date: Mon, 10 Jul 2023 16:25:42 +0200 Subject: [PATCH] get ready for 1.6.0 (#69) --- CHANGELOG.md | 7 ++++++- Cargo.lock | 2 +- crates/abq_cli/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a8a159..a5d49eae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.6.0 + +ABQ 1.6.0 adds the `abq report list-tests` command, which lists the tests that were +run on an existing test run. + ## 1.5.0 ABQ 1.5.0 adds new functionality for test distribution and the ability to replay @@ -111,7 +116,7 @@ remote storage on `abq start`: - `ABQ_REMOTE_PERSISTENCE_COMMAND`: A comma-delimited string of the executable and the head arguments that should be called to perform an operation on the remote persistence target. The executable will be called in the following form: - + ``` <...arguments> ``` diff --git a/Cargo.lock b/Cargo.lock index 8d6e4a40..89954971 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "abq" -version = "1.5.0" +version = "1.6.0" dependencies = [ "abq_dot_reporter", "abq_hosted", diff --git a/crates/abq_cli/Cargo.toml b/crates/abq_cli/Cargo.toml index c3c46180..2e4d13d0 100644 --- a/crates/abq_cli/Cargo.toml +++ b/crates/abq_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abq" -version = "1.5.0" +version = "1.6.0" edition = "2021" [dependencies] @@ -68,4 +68,4 @@ mockito.workspace = true [features] test-abq-jest = [] -s3 = [ "abq_queue/s3" ] +s3 = ["abq_queue/s3"]