diff options
author | Benjamin Nguyen <benjamin.van.nguyen@gmail.com> | 2023-07-01 18:24:08 +0700 |
---|---|---|
committer | Benjamin Nguyen <benjamin.van.nguyen@gmail.com> | 2023-07-01 18:24:08 +0700 |
commit | 3f3195d869504e2cbead7b674d7c2ba1697a28fc (patch) | |
tree | 25ff86682a5b52d34f6ae93f82a6b800b29f9551 | |
parent | bceba50eef258773e3ef6b3fcb8d0693d584831f (diff) |
patch version bumpstdout-deadlock-fix
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/context/mod.rs | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2470c2e..3166862 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.1.1] - 2023-07-01 + +[This patches](https://github.com/solidiquis/erdtree/pull/215) a deadlock that occurs when `--pattern` fails to make any matches and the progress indicator is enabled which causes `erdtree` to completely freeze. + ## [3.1.0] - 2023-07-01 ### [What's new](https://github.com/solidiquis/erdtree/pull/202) @@ -278,7 +278,7 @@ dependencies = [ [[package]] name = "erdtree" -version = "3.1.0" +version = "3.1.1" dependencies = [ "ansi_term", "chrono", @@ -1,6 +1,6 @@ [package] name = "erdtree" -version = "3.1.0" +version = "3.1.1" edition = "2021" authors = ["Benjamin Nguyen <benjamin.van.nguyen@gmail.com>"] description = """ diff --git a/src/context/mod.rs b/src/context/mod.rs index 829b9ca..7764842 100644 --- a/src/context/mod.rs +++ b/src/context/mod.rs @@ -53,7 +53,7 @@ pub mod time; #[derive(Parser, Debug)] #[command(name = "erdtree")] #[command(author = "Benjamin Nguyen. <benjamin.van.nguyen@gmail.com>")] -#[command(version = "3.1.0")] +#[command(version = "3.1.1")] #[command(about = "erdtree (erd) is a cross-platform, multi-threaded, and general purpose filesystem and disk usage utility.", long_about = None)] pub struct Context { /// Directory to traverse; defaults to current working directory |