Skip to content

Commit

Permalink
Add display name and use clap-markdown fork (#103)
Browse files Browse the repository at this point in the history
* use own clap-markdown fork that enables display name formatting

* add display name for am

* add changelog
  • Loading branch information
keturiosakys authored Jul 24, 2023
1 parent 780c506 commit d52ee5c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

- SHA-256 checksums are now provided for all artifact downloads (#101)
- Use `clap-markdown` fork that enables formatting by display name (#103)

## [0.2.0]

Expand Down
3 changes: 1 addition & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ categories = ["development-tools::profiling"]
anyhow = { version = "1.0.71" }
axum = { version = "0.6.18" }
clap = { version = "4.2.7", features = ["derive", "env"] }
clap-markdown = "0.1.3"
clap-markdown = { git = "https://github.com/keturiosakys/clap-markdown.git" }
dialoguer = "0.10.4"
directories = { version = "5.0.1" }
flate2 = { version = "1.0.26" }
Expand Down
2 changes: 1 addition & 1 deletion src/bin/am/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub mod start;
pub mod system;

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(author, version, about, long_about = None, display_name = "am")]
pub struct Application {
#[command(subcommand)]
pub command: SubCommands,
Expand Down

0 comments on commit d52ee5c

Please sign in to comment.