diff --git a/Cargo.lock b/Cargo.lock index dec0c8731b..e89bdee99f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8458,7 +8458,7 @@ dependencies = [ [[package]] name = "move-mutation-test" -version = "1.0.0" +version = "1.0.1" dependencies = [ "anyhow", "aptos", @@ -8890,7 +8890,7 @@ dependencies = [ [[package]] name = "mutator-common" -version = "0.1.0" +version = "1.0.0" dependencies = [ "anyhow", "clap 4.5.23", diff --git a/move-mutation-test/Cargo.toml b/move-mutation-test/Cargo.toml index 1c8186d4d5..1fa0e8be49 100644 --- a/move-mutation-test/Cargo.toml +++ b/move-mutation-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "move-mutation-test" -version = "1.0.0" +version = "1.0.1" description = "Move mutation unit testing tool" authors.workspace = true edition.workspace = true diff --git a/move-mutator/src/main.rs b/move-mutator/src/main.rs index 3a6df90dfc..878a3f9ac6 100644 --- a/move-mutator/src/main.rs +++ b/move-mutator/src/main.rs @@ -12,7 +12,9 @@ use move_mutator::{ use move_package::BuildConfig; use std::path::PathBuf; -#[derive(Default, Parser, Debug, Clone)] +#[derive(Default, Parser, Debug)] +#[command(version, about, long_about = None)] +#[command(propagate_version = true)] pub struct Opts { /// The path to the target Move package. #[clap(long, value_parser)] diff --git a/mutator-common/Cargo.toml b/mutator-common/Cargo.toml index 8c26d4de83..8b3ffa58c7 100644 --- a/mutator-common/Cargo.toml +++ b/mutator-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mutator-common" -version = "0.1.0" +version = "1.0.0" description = "Common set of tools for mutator applications" authors.workspace = true edition.workspace = true