Skip to content

Commit

Permalink
fix(-Q): restore support for -Qtt
Browse files Browse the repository at this point in the history
Fixes #919
  • Loading branch information
fosskers committed Aug 24, 2024
1 parent 517fe05 commit 188ef0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Aura Changelog

## Unreleased

#### Fixed

- Restore support for `-Qtt`.

## 4.0.3 (2024-08-16)

#### Fixed
Expand Down
4 changes: 2 additions & 2 deletions rust/aura-pm/src/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -997,8 +997,8 @@ pub struct Query {
#[clap(long, short, display_order = 1)]
search: bool,
/// List packages not (optionally) required by any package (-tt to ignore optdepends) [filter].
#[clap(long, short = 't', display_order = 1)]
unrequired: bool,
#[clap(long, short = 't', action(ArgAction::Count), display_order = 1)]
unrequired: u8,
/// List outdated packages [filter].
#[clap(long, short, display_order = 1)]
upgrades: bool,
Expand Down

0 comments on commit 188ef0e

Please sign in to comment.