Skip to content

Commit

Permalink
Prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jun 7, 2021
1 parent fe9611a commit f45852a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### v2.12.2

* Prepare for release of new Apple hardware and be more specific when auto-configuring the correct amount of threads.
Instead an error message will be printed to inform that the given CPU brand isn't configurable yet.

#### v2.12.1

* Fixed bug that would cause `dua` to unconditionally sleep for 1 second. This sleep was intended for a spawned thread,
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fn derive_default_threads(threads: usize) -> usize {
"Apple M1" => 4,
other => {
eprintln!(
"Couldn't auto-configure correct amount of threads for {}",
"Couldn't auto-configure correct amount of threads for {}. Create an issue here: https://github.com/byron/dua-cli/issues",
other
);
0
Expand Down

0 comments on commit f45852a

Please sign in to comment.