summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-07-26 10:49:09 +0800
committerSebastian Thiel <sthiel@thoughtworks.com>2019-07-26 10:50:05 +0800
commitd614b475dcb02690286218accec28c8b6ee5167c (patch)
tree0883c8dccbc275c6d22cbb62fa9bcfff1f367503
parentf205cec7a6415ad85cefd69026c0f236839c9690 (diff)
Bump version to 2.2.0v2.1.11
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md6
3 files changed, 8 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 54f69b0..bc74204 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -169,7 +169,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "dua-cli"
-version = "2.1.10"
+version = "2.1.11"
dependencies = [
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
"byte-unit 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index 87a934b..c5d022e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dua-cli"
-version = "2.1.10"
+version = "2.1.11"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
edition = "2018"
include = ["src/**/*", "Cargo.toml"]
diff --git a/README.md b/README.md
index 1c75761..045fb44 100644
--- a/README.md
+++ b/README.md
@@ -49,6 +49,12 @@ dua interactive
* [ ] Evaluate unit coloring - can we highlight different units better, make them stick out?
+#### ✅ v2.1.11 - Finally fix symlink handling
+
+`dua` will not follow symbolic links when deleting directories. Thank a ton, @vks!
+
+_Technical Notes_: Handling symbolic links properly is impossible without usage of `symlink_metadata()`.
+
#### ✅ v2.1.10 - compatibility with light terminals
* the TUI is now usable on light terminals, and highlighting is more consistent. Thank you, @vks!