diff options
author | Benjamin Nguyen <benjamin.van.nguyen@gmail.com> | 2023-06-12 15:15:21 -0700 |
---|---|---|
committer | Benjamin Nguyen <benjamin.van.nguyen@gmail.com> | 2023-06-12 15:15:21 -0700 |
commit | 8882555fb45ebd95fc2039f681682d26ee0389d9 (patch) | |
tree | 25d1b791728f2581f4019be6ee6f0b68c3493869 | |
parent | f1de8626a6b442ad0027dd69688afb19d4c67d20 (diff) |
v3.0.2v3.0.2
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/context/mod.rs | 2 |
4 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 05a3a79..fcc74d9 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 @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "erdtree" -version = "3.0.1" +version = "3.0.2" dependencies = [ "ansi_term", "chrono", @@ -1,6 +1,6 @@ [package] name = "erdtree" -version = "3.0.1" +version = "3.0.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 eba70aa..7276587 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. <benjamin.van.nguyen@gmail.com>")] -#[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 |