diff --git a/CHANGELOG.md b/CHANGELOG.md index d4790e27..6a0ab6bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump `thiserror` from 1.0.53 to 1.0.56 ([#404](https://github.com/wcampbell0x2a/backhand/pull/404)) - Bump `actions/upload-artifact` from 4.0.0 to 4.1.0 ([#423](https://github.com/wcampbell0x2a/backhand/pull/423)) - Bump `libc` from 0.2.151 to 0.2.152 ([#408](https://github.com/wcampbell0x2a/backhand/pull/408)) +- Bump `clap_complete` from 4.4.5 to 4.4.7 ([#426](https://github.com/wcampbell0x2a/backhand/pull/426)) ## [v0.14.1] - 2024-01-13 ### `backhand` diff --git a/Cargo.lock b/Cargo.lock index 42bc2e51..80a6f8b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,9 +289,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.4.5" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a51919c5608a32e34ea1d6be321ad070065e17613e168c5b6977024290f2630b" +checksum = "dfb0d4825b75ff281318c393e8e1b80c4da9fb75a6b1d98547d389d6fe1f48d2" dependencies = [ "clap", ] diff --git a/backhand-cli/Cargo.toml b/backhand-cli/Cargo.toml index d7730e77..798ba370 100644 --- a/backhand-cli/Cargo.toml +++ b/backhand-cli/Cargo.toml @@ -16,7 +16,7 @@ nix = { version = "0.27.1", default-features = false, features = ["fs"] } clap = { version = "4.4.17", features = ["derive", "wrap_help"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] } libc = "0.2.152" -clap_complete = "4.4.5" +clap_complete = "4.4.7" indicatif = "0.17.7" console = "0.15.7" rayon = "1.8.0"