diff --git a/CHANGELOG.md b/CHANGELOG.md index ed45eb65..7e4d8e11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump `thiserror` from 1.0.56 to 1.0.57 ([#476](https://github.com/wcampbell0x2a/backhand/pull/476)) - Bump `indicatif` from 0.17.7 to 0.17.8 ([#477](https://github.com/wcampbell0x2a/backhand/pull/477)) - Bump `libdeflater` from 1.19.0 to 1.19.2 ([#486](https://github.com/wcampbell0x2a/backhand/pull/486)) +- Bump `assert_cmd` from 2.0.13 to 2.0.14 ([#484](https://github.com/wcampbell0x2a/backhand/pull/484)) ## [v0.14.2] - 2024-01-16 ### `backhand` diff --git a/Cargo.lock b/Cargo.lock index e57496dd..2ea50cde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,9 +73,9 @@ dependencies = [ [[package]] name = "assert_cmd" -version = "2.0.13" +version = "2.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00ad3f3a942eee60335ab4342358c161ee296829e0d16ff42fc1d6cb07815467" +checksum = "ed72493ac66d5804837f480ab3766c72bdfab91a65e565fc54fa9e42db0073a8" dependencies = [ "anstream", "anstyle", diff --git a/backhand-test/Cargo.toml b/backhand-test/Cargo.toml index c18154c1..d0a0c140 100644 --- a/backhand-test/Cargo.toml +++ b/backhand-test/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dev-dependencies] backhand = { path = "../backhand", default-features = false } -assert_cmd = { version = "2.0.13", features = ["color", "color-auto"] } +assert_cmd = { version = "2.0.14", features = ["color", "color-auto"] } dir-diff = { git = "https://github.com/wcampbell0x2a/dir-diff", branch = "add-checking-permissions" } tempfile = "3.9.0" test-assets = { git = "https://github.com/wcampbell0x2a/test-assets", branch = "replace-curl-ureq" } diff --git a/backhand/Cargo.toml b/backhand/Cargo.toml index 8ae4c671..58f04c86 100644 --- a/backhand/Cargo.toml +++ b/backhand/Cargo.toml @@ -42,7 +42,7 @@ zstd = ["dep:zstd"] [dev-dependencies] test-log = { version = "0.2.14", features = ["trace"] } test-assets = { git = "https://github.com/wcampbell0x2a/test-assets", branch = "replace-curl-ureq" } -assert_cmd = { version = "2.0.13", features = ["color", "color-auto"] } +assert_cmd = { version = "2.0.14", features = ["color", "color-auto"] } dir-diff = { git = "https://github.com/wcampbell0x2a/dir-diff", branch = "add-checking-permissions" } tempfile = "3.9.0" criterion = "0.5"