Skip to content

Commit 248e4d2

Browse files
committed
cli: bugzilla modify: fix overlapping short options for --reply and --resolution
1 parent 8c1f0e8 commit 248e4d2

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.0.5
4+
5+
### Fixed
6+
7+
#### Bugzilla
8+
- modify: Fixed overlapping short options for --reply and --resolution.
9+
310
## 0.0.4
411

512
### Added

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bugbite-cli"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "command line tool for bug, issue, and ticket mangling"
55
documentation = "https://github.com/radhermit/bugbite"
66
homepage = "https://github.com/radhermit/bugbite"

crates/cli/src/service/bugzilla/modify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ pub(super) struct Command {
433433

434434
/// reply to specific comments
435435
#[arg(
436-
short,
436+
short = 'R',
437437
long,
438438
value_name = "ID[,...]",
439439
value_delimiter = ',',

0 commit comments

Comments
 (0)