From 297206f4761f64e4bc85bfb67ba85417acf6b0da Mon Sep 17 00:00:00 2001 From: Canop Date: Wed, 2 Jun 2021 21:19:25 +0200 Subject: version 1.5.0 --- CHANGELOG.md | 3 ++- Cargo.lock | 2 +- Cargo.toml | 2 +- src/file_sum/sum_computation.rs | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bcaed9..21d506b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ -### next + +### v1.5.0 - 2021-06-02 - new `auto_exec` verb propery: a non-auto_exec verb isn't executed directly on a keyboard shortcut but fills the input so that it may be edited before execution on enter key - add support for backtab key (by default it's bound to :previous_match) - `:rename` built-in verb, best used with its keyboard shortcut F2 diff --git a/Cargo.lock b/Cargo.lock index 2eec5b0..969aa8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,7 +138,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "broot" -version = "1.4.1-dev" +version = "1.5.0" dependencies = [ "ahash 0.7.2", "ansi_colours", diff --git a/Cargo.toml b/Cargo.toml index 20ddeba..604fef5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broot" -version = "1.4.1-dev" +version = "1.5.0" authors = ["dystroy "] repository = "https://github.com/Canop/broot" documentation = "https://dystroy.org/broot" diff --git a/src/file_sum/sum_computation.rs b/src/file_sum/sum_computation.rs index 28ce930..3bb32f2 100644 --- a/src/file_sum/sum_computation.rs +++ b/src/file_sum/sum_computation.rs @@ -15,6 +15,7 @@ use { sync::{ atomic::{AtomicIsize, Ordering}, Arc, + Mutex, }, }, }; @@ -24,7 +25,6 @@ use { fnv::FnvHashSet, std::{ os::unix::fs::MetadataExt, - sync::Mutex, }, }; -- cgit v1.2.3