summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Nguyen <benjamin.van.nguyen@gmail.com>2023-07-02 12:03:58 +0700
committerBenjamin Nguyen <benjamin.van.nguyen@gmail.com>2023-07-02 12:03:58 +0700
commitfde18e16dbef8f477c04658bd9315937ffa333d2 (patch)
tree4a66bc205cd65004c94cfaa87324147bf6498f9a
parent446e00ca0c318150d4664bdd81afe3f6c9e8e650 (diff)
patch bump; changelog
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/context/mod.rs2
4 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3166862..8031c3f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [3.1.2] - 2023-07-02
+
+### Bug Fixes
+- [Fix loading .erdtree.toml on Windows](https://github.com/solidiquis/erdtree/issues/217) [#218](https://github.com/solidiquis/erdtree/pull/218)
+- [Fix race to print to stdout/stderr which made error messages not appear at times](https://github.com/solidiquis/erdtree/issues/219) [#220](https://github.com/solidiquis/erdtree/pull/220)
+
+[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.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.
diff --git a/Cargo.lock b/Cargo.lock
index 3d37e67..90778b5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -278,7 +278,7 @@ dependencies = [
[[package]]
name = "erdtree"
-version = "3.1.1"
+version = "3.1.2"
dependencies = [
"ansi_term",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index ee3f74b..31f2c53 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "erdtree"
-version = "3.1.1"
+version = "3.1.2"
edition = "2021"
authors = ["Benjamin Nguyen <benjamin.van.nguyen@gmail.com>"]
description = """
diff --git a/src/context/mod.rs b/src/context/mod.rs
index 031bad0..948770b 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.1")]
+#[command(version = "3.1.2")]
#[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