Skip to content

Commit

Permalink
✏️ Fix cli help message
Browse files Browse the repository at this point in the history
  • Loading branch information
sjquant committed Aug 31, 2024
1 parent 3793872 commit 0940b5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ pub struct Cli {

#[derive(Subcommand)]
pub enum Commands {
#[clap(about = "Finds the latest version tag in the repository matching a given pattern.")]
NextVersion(NextVersionArgs),
#[clap(about = "Calculates the next version number based on the latest matching tag.")]
NextVersion(NextVersionArgs),
#[clap(about = "Finds the latest version tag in the repository matching a given pattern.")]
LastVersion(LastVersionArgs),
#[clap(
about = "Finds the latest version tag in the repository matching a given pattern. (Alias for last-version)"
)]
Lv(LastVersionArgs),
#[clap(
about = "Calculates the next version number based on the latest matching tag. (Alias for next-version)"
)]
Nv(NextVersionArgs),
#[clap(
about = "Finds the latest version tag in the repository matching a given pattern. (Alias for last-version)"
)]
Lv(LastVersionArgs),
}

#[derive(Args, Debug)]
Expand Down

0 comments on commit 0940b5b

Please sign in to comment.