summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-12-16 11:48:34 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-12-16 11:48:34 +0800
commit20d9094a6d604badc4e70c9d1f45bca65f35c849 (patch)
tree5552459b6c533cfabe299862099b6c03f6128673
parenta1cf012f36269d97953baac9288b2fc5551bc6a0 (diff)
prepare next release
-rw-r--r--CHANGELOG.md9
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 67b945b..cb61756 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+#### v2.10.7 - Better performance on Apple Silicon (M1)
+
+The IO subsystem on Apple Silicon is different and won't scale nicely just by using all amount of available cores. Instead it seems best to only
+use as many threads as performance cores are present on the system - otherwise the performance might actually get worse while using more power.
+
+On all other systems, the default number of threads did not change.
+
+**Please note that for optimial performance** one would need an arm build on MacOS, currently provided is only intel builds.
+
#### v2.10.6 - Fix `dua -h` usage string
#### v2.10.5 - dependency update
diff --git a/Cargo.lock b/Cargo.lock
index 0b1b7a2..95cd500 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -287,7 +287,7 @@ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
[[package]]
name = "dua-cli"
-version = "2.10.5"
+version = "2.10.6"
dependencies = [
"anyhow",
"atty",
diff --git a/Cargo.toml b/Cargo.toml
index 1193ff0..0afb5a1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dua-cli"
-version = "2.10.5"
+version = "2.10.6"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
edition = "2018"
repository = "https://github.com/Byron/dua-cli"