summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2024-01-23 15:49:49 +0100
committerSebastian Thiel <sebastian.thiel@icloud.com>2024-01-23 15:49:49 +0100
commit984fd979e18ffaa20ba35bca3b85dc47c404328c (patch)
tree30b96e70c7529d2df3cf82568112b75f0ad50667
parentd837d720e3b1e204043b8d89447db0d65ae000ba (diff)
Release dua-cli v2.28.0v2.28.0
-rw-r--r--CHANGELOG.md36
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 37 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e59a0f2..fd14a4f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 2.28.0 (2024-01-23)
+
+### New Features
+
+ - <csr-id-78b9a8e22568c902132ed98d32e223ff71eb7b06/> add `dua i --no-entry-check` flag.
+ With it, in interactive mode, entries will not be checked for presence.
+
+ This can avoid laggy behaviour when switching between directories
+ as `lstat` calls will not run, which can be slow on some filesystems.
+
+### Commit Statistics
+
+<csr-read-only-do-not-edit/>
+
+ - 3 commits contributed to the release.
+ - 1 day passed between releases.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 2 unique issues were worked on: [#226](https://github.com/Byron/dua-cli/issues/226), [#227](https://github.com/Byron/dua-cli/issues/227)
+
+### Commit Details
+
+<csr-read-only-do-not-edit/>
+
+<details><summary>view details</summary>
+
+ * **[#226](https://github.com/Byron/dua-cli/issues/226)**
+ - Make builds with rustc 1.72 work ([`600bee2`](https://github.com/Byron/dua-cli/commit/600bee234edd4e7922017c26927a6f135a02c335))
+ * **[#227](https://github.com/Byron/dua-cli/issues/227)**
+ - Add `dua i --no-entry-check` flag. ([`78b9a8e`](https://github.com/Byron/dua-cli/commit/78b9a8e22568c902132ed98d32e223ff71eb7b06))
+ * **Uncategorized**
+ - Merge branch 'no-entry-check' ([`d837d72`](https://github.com/Byron/dua-cli/commit/d837d720e3b1e204043b8d89447db0d65ae000ba))
+</details>
+
## 2.27.2 (2024-01-22)
### Bug Fixes
@@ -27,7 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<csr-read-only-do-not-edit/>
- - 3 commits contributed to the release.
+ - 4 commits contributed to the release.
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 1 unique issue was worked on: [#223](https://github.com/Byron/dua-cli/issues/223)
@@ -40,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **[#223](https://github.com/Byron/dua-cli/issues/223)**
- Don't check entry metadata while a scan is in progress ([`c70ca81`](https://github.com/Byron/dua-cli/commit/c70ca81f007f925c7891340d0d0e763bcfc4114d))
* **Uncategorized**
+ - Release dua-cli v2.27.2 ([`e512f31`](https://github.com/Byron/dua-cli/commit/e512f31df3aeba1410df5e250dd74569a48fdf66))
- Merge branch 'fix-overhead' ([`7a4b271`](https://github.com/Byron/dua-cli/commit/7a4b27153c2cb47caca87e28c5e178921c3a3fd9))
- Allow `/` (glob-mode) while scanning. ([`67c5bdb`](https://github.com/Byron/dua-cli/commit/67c5bdb74cfcf8cab647888afec26cd09ccf543a))
</details>
diff --git a/Cargo.lock b/Cargo.lock
index 59a886f..9f24884 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -348,7 +348,7 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
[[package]]
name = "dua-cli"
-version = "2.27.2"
+version = "2.28.0"
dependencies = [
"anyhow",
"atty",
diff --git a/Cargo.toml b/Cargo.toml
index 0f3d12f..4e8b2ca 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dua-cli"
-version = "2.27.2"
+version = "2.28.0"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
edition = "2021"
repository = "https://github.com/Byron/dua-cli"