From 4b28a2baf6bd9995c2f9f94149d331b9f9b404a0 Mon Sep 17 00:00:00 2001 From: Benjamin Nguyen Date: Thu, 30 Mar 2023 13:01:11 -0700 Subject: [PATCH] patch bump --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/render/context/mod.rs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c033e452..5be018c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.7.1] - 2023-03-30 + +## What's Changed +* fix issue where not-existent directory as cli arg causes infinite loop by @solidiquis in https://github.com/solidiquis/erdtree/pull/107 + +**Full Changelog**: https://github.com/solidiquis/erdtree/compare/1.7.0...v1.7.1 + ## [1.7.0] - 2023-03-30 ## What's Changed diff --git a/Cargo.lock b/Cargo.lock index 7362e825..22ea314c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "erdtree" -version = "1.7.0" +version = "1.7.1" dependencies = [ "ansi_term", "clap", diff --git a/Cargo.toml b/Cargo.toml index 2b7e7114..fd4753df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erdtree" -version = "1.7.0" +version = "1.7.1" edition = "2021" authors = ["Benjamin Nguyen "] description = """ diff --git a/src/render/context/mod.rs b/src/render/context/mod.rs index 760f3a8c..586fed3b 100644 --- a/src/render/context/mod.rs +++ b/src/render/context/mod.rs @@ -23,7 +23,7 @@ mod test; #[derive(Parser, Debug)] #[command(name = "erdtree")] #[command(author = "Benjamin Nguyen. ")] -#[command(version = "1.7.0")] +#[command(version = "1.7.1")] #[command(about = "erdtree (et) is a multi-threaded file-tree visualization and disk usage analysis tool.", long_about = None)] pub struct Context { /// Include aggregate file count in tree output