From 8882555fb45ebd95fc2039f681682d26ee0389d9 Mon Sep 17 00:00:00 2001 From: Benjamin Nguyen Date: Mon, 12 Jun 2023 15:15:21 -0700 Subject: [PATCH] v3.0.2 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/context/mod.rs | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05a3a79a..fcc74d93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.0.2] - 2023-06-12 + +### Bug fixes +- [Fixed segmentation fault that occurs with `--long` when file has an invalid user or group](https://github.com/solidiquis/erdtree/pull/193) +- [Updated deprecated Nerd symbols](https://github.com/solidiquis/erdtree/pull/192) +- [Change CJK and emoji block icons](https://github.com/solidiquis/erdtree/pull/194) + +**Full Changelog**: https://github.com/solidiquis/erdtree/compare/v3.0.1...v3.0.2 + ## [3.0.1] - 2023-05-28 ### Bug fixes diff --git a/Cargo.lock b/Cargo.lock index b7d3064b..efe10645 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "erdtree" -version = "3.0.1" +version = "3.0.2" dependencies = [ "ansi_term", "chrono", diff --git a/Cargo.toml b/Cargo.toml index d76e2f85..c6eb1e4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erdtree" -version = "3.0.1" +version = "3.0.2" edition = "2021" authors = ["Benjamin Nguyen "] description = """ diff --git a/src/context/mod.rs b/src/context/mod.rs index eba70aab..72765879 100644 --- a/src/context/mod.rs +++ b/src/context/mod.rs @@ -51,7 +51,7 @@ mod test; #[derive(Parser, Debug)] #[command(name = "erdtree")] #[command(author = "Benjamin Nguyen. ")] -#[command(version = "3.0.1")] +#[command(version = "3.0.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