Skip to content

Commit 4b28a2b

Browse files
committed
patch bump
1 parent 37b5165 commit 4b28a2b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ 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+
## [1.7.1] - 2023-03-30
7+
8+
## What's Changed
9+
* fix issue where not-existent directory as cli arg causes infinite loop by @solidiquis in https://github.com/solidiquis/erdtree/pull/107
10+
11+
**Full Changelog**: https://github.com/solidiquis/erdtree/compare/1.7.0...v1.7.1
12+
613
## [1.7.0] - 2023-03-30
714

815
## What's Changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "erdtree"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
edition = "2021"
55
authors = ["Benjamin Nguyen <[email protected]>"]
66
description = """

src/render/context/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mod test;
2323
#[derive(Parser, Debug)]
2424
#[command(name = "erdtree")]
2525
#[command(author = "Benjamin Nguyen. <[email protected]>")]
26-
#[command(version = "1.7.0")]
26+
#[command(version = "1.7.1")]
2727
#[command(about = "erdtree (et) is a multi-threaded file-tree visualization and disk usage analysis tool.", long_about = None)]
2828
pub struct Context {
2929
/// Include aggregate file count in tree output

0 commit comments

Comments
 (0)