Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions build.rs

This file was deleted.

7 changes: 3 additions & 4 deletions src/cli/options.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#[derive(clap::Parser)]
#[clap(subcommand_required = true)]
#[clap(disable_help_subcommand = true)]
#[clap(disable_version_flag = true)]
#[clap(bin_name = "cargo")]
#[clap(bin_name = "cargo", version = env!("CARGO_PKG_VERSION"))]
/// Release workspace crates fearlessly.
///
/// Use --execute to actually perform the operation.
Expand All @@ -13,7 +12,7 @@ pub struct Args {

#[derive(clap::Parser)]
pub enum SubCommands {
#[clap(name = "smart-release", version = option_env!("CARGO_SMART_RELEASE_VERSION"))]
#[clap(name = "smart-release", version = env!("CARGO_PKG_VERSION"))]
/// Release workspace crates fearlessly.
///
/// Use --execute to actually perform the operation.
Expand Down Expand Up @@ -179,7 +178,7 @@ pub enum SubCommands {
#[clap(long, help_heading = Some("CUSTOMIZATION"))]
commit_prefix: Option<String>,
},
#[clap(name = "changelog", version = option_env!("CARGO_SMART_RELEASE_VERSION"))]
#[clap(name = "changelog", version = env!("CARGO_PKG_VERSION"))]
/// Generate changelogs from commit histories, non-destructively.
///
/// Use --write to actually write generated changelogs
Expand Down