Skip to content

Commit

Permalink
Fix #102, bump patch level
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 16, 2021
1 parent 9501d08 commit 3a6c654
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### v2.14.5

* Fix installation via `cargo install dua-cli`. Please note that it might break again as it still depends on the unsable `clap-3 beta 4`. Even when pinning it breakage is possible as its dependencies itself aren't pinned.

#### v2.14.4

* upgrade depencies
Expand Down
19 changes: 9 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dua-cli"
version = "2.14.4"
version = "2.14.5"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
edition = "2018"
repository = "https://github.com/Byron/dua-cli"
Expand All @@ -19,7 +19,7 @@ trash-move = ["trash"]
aggregate-scan-progress = []

[dependencies]
clap = "3.0.0-beta.2"
clap = "3.0.0-beta.4"
jwalk = "0.6.0"
byte-unit = "4"
atty = "0.2.11"
Expand Down
2 changes: 1 addition & 1 deletion src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl From<ByteFormat> for LibraryByteFormat {
#[derive(Debug, Clap)]
#[clap(name = "dua", about = "A tool to learn about disk usage, fast!", version = clap::crate_version!())]
#[clap(setting = clap::AppSettings::ColoredHelp)]
#[clap(setting = clap::AppSettings::GlobalVersion)]
#[clap(setting = clap::AppSettings::DisableVersionForSubcommands)]
#[clap(override_usage = "dua [FLAGS] [OPTIONS] [SUBCOMMAND] [input]...")]
pub struct Args {
#[clap(subcommand)]
Expand Down

0 comments on commit 3a6c654

Please sign in to comment.