summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Nguyen <benjamin.van.nguyen@gmail.com>2023-07-01 18:24:08 +0700
committerBenjamin Nguyen <benjamin.van.nguyen@gmail.com>2023-07-01 18:24:08 +0700
commit3f3195d869504e2cbead7b674d7c2ba1697a28fc (patch)
tree25ff86682a5b52d34f6ae93f82a6b800b29f9551
parentbceba50eef258773e3ef6b3fcb8d0693d584831f (diff)
patch version bumpstdout-deadlock-fix
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/context/mod.rs2
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)
diff --git a/Cargo.lock b/Cargo.lock
index 6e1ed6c..3d37e67 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -278,7 +278,7 @@ dependencies = [
[[package]]
name = "erdtree"
-version = "3.1.0"
+version = "3.1.1"
dependencies = [
"ansi_term",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index 65f7ae6..ee3f74b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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