Skip to content

Commit fde18e1

Browse files
committed
patch bump; changelog
1 parent 446e00c commit fde18e1

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [3.1.2] - 2023-07-02
7+
8+
### Bug Fixes
9+
- [Fix loading .erdtree.toml on Windows](https://github.com/solidiquis/erdtree/issues/217) [#218](https://github.com/solidiquis/erdtree/pull/218)
10+
- [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)
11+
12+
[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.
13+
614
## [3.1.1] - 2023-07-01
715

816
[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.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erdtree"
3-
version = "3.1.1"
3+
version = "3.1.2"
44
edition = "2021"
55
authors = ["Benjamin Nguyen <[email protected]>"]
66
description = """

src/context/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub mod time;
5353
#[derive(Parser, Debug)]
5454
#[command(name = "erdtree")]
5555
#[command(author = "Benjamin Nguyen. <[email protected]>")]
56-
#[command(version = "3.1.1")]
56+
#[command(version = "3.1.2")]
5757
#[command(about = "erdtree (erd) is a cross-platform, multi-threaded, and general purpose filesystem and disk usage utility.", long_about = None)]
5858
pub struct Context {
5959
/// Directory to traverse; defaults to current working directory

0 commit comments

Comments
 (0)