summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 15:06:25 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 15:08:59 +0800
commitbecae48c29aa2db036f097516959d60cc219bc03 (patch)
tree7b835e2b7a5ac371d4fcf07001c64b91fe99f909
parent230bd1d338cae861f1390b4db0dc58c8ea1491d4 (diff)
Cut new release: 2.9v2.9.0
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md3
4 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bbf740d..0d9fdf9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+#### v2.9.0 - Full windows support!
+
+* On Windows, we will now build using `crossterm`, which was greatly facilitated by `crosstermion`.
+* On Unix systems, the backend is still `termion`.
+
#### v2.8.2
* Switch back to `structopt` from `argh` to support non-UTF-8 encoded paths to be passed to dua
diff --git a/Cargo.lock b/Cargo.lock
index abe9d3f..07191b1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -228,7 +228,7 @@ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
[[package]]
name = "dua-cli"
-version = "2.8.2"
+version = "2.9.0"
dependencies = [
"anyhow",
"atty",
diff --git a/Cargo.toml b/Cargo.toml
index 795e6c5..9c90834 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dua-cli"
-version = "2.8.2"
+version = "2.9.0"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
edition = "2018"
repository = "https://github.com/Byron/dua-cli"
diff --git a/README.md b/README.md
index 6d828fe..ef9c824 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,9 @@ Via `cargo`, which can be obtained using [rustup][rustup]
```
cargo install dua-cli
+
+# And if you don't need a terminal user interface
+cargo install dua-cli --no-default-features
```
#### VoidLinux