summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2021-11-14 09:31:31 +0100
committerDavid Peter <sharkdp@users.noreply.github.com>2021-11-14 09:51:41 +0100
commitfc383723b79c9f0d9c142ca27669093188c2c26c (patch)
tree1683a69a3821e199aae692c023a3f69ac798e328
parent81bfc13b52970be2576a3a442c7f6667f185f31c (diff)
Add CHANGELOG file
-rw-r--r--CHANGELOG.md63
1 files changed, 63 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..6e8b488
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,63 @@
+# unreleased
+
+## Changes
+
+
+## Features
+
+
+## Bugfixes
+
+
+## Other
+
+
+## Packaging
+
+# v0.6.0
+
+## Changes
+
+There is an important change in default behavior: `diskus` will now report "disk usage" instead of "apparent file size", in analogy to what `du -sh` does.
+
+At the same time however, we introduce a new `-b`/`--apparent-size` option which can be used to switch back to apparent file size (in analogy to what `du -sbh` does).
+
+see #25
+
+## Features
+
+- `diskus` is now available for Windows, see #32 (@fawick)
+- Error messages are now hidden by default and can be re-enabled via `--verbose`, see #34 (@wngr)
+- Added a new `--size-format <type>` option which can be used to switch from decimal to binary exponents (MiB instead of MB).
+- `diskus` changes its output format when the output is piped to a file or to another program. It will simply print the number of bytes, see #35
+- Added a new `-b`/`--apparent-size` option which can be used to switch from "disk usage" to "apparent size" (not available on Windows)
+
+## Other
+
+- diskus is now in the official Arch repositories, see #24 (@polyzen)
+- diskus is now available on NixOS, see #26 (@fuerbringer)
+- diskus is now available on Homebrew and MacPorts, see #33 (@heimskr)
+- Added a man page
+
+# v0.5.0
+
+- Expose diskus internals as a library, see #21 (@amilajack)
+
+# v0.4.0
+
+- More performance improvements by using a custom parallel directory-walker, see #15
+
+# v0.3.1
+
+# v0.3.0
+
+- Renamed the project to diskus
+
+# v0.2.0
+
+- Fine-tuned number of threads (makes is even faster)
+
+# v0.1.0
+
+Initial release
+