Skip to content

Commit

Permalink
Add missing parenthesis; bump patch level
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 11, 2020
1 parent 360d3ee commit b2af5b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## v8.0.1 - Add missing trailing paranthesis in throughput display

## v8.0.0

### New Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prodash"
version = "8.0.0"
version = "8.0.1"
authors = ["Sebastian Thiel <[email protected]>"]
description = "A dashboard for visualizing progress of asynchronous and possibly blocking tasks"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pub trait Progress {
buf.write_fmt(format_args!(" in {:.02}s (", elapsed)).ok();
unit.display_current_value(&mut buf, steps_per_second, None).ok();
push_unit(&mut buf);
buf.push_str("/s");
buf.push_str("/s)");

self.info(buf);
}
Expand Down

0 comments on commit b2af5b9

Please sign in to comment.