From f757f2c46eb937eda16a4c94b934601cfb4cac7f Mon Sep 17 00:00:00 2001 From: fmaccha Date: Fri, 9 Feb 2024 00:10:19 +0900 Subject: [PATCH] Update version number in Cargo.toml and README.md --- Cargo.toml | 2 +- README.md | 4 ++-- src/args.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7a2d54..96a101e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tataki" authors = ["Tazro Ohta (tazro.ohta@chiba-u.jp)"] -version = "0.2.1" +version = "0.2.2" edition = "2021" repository = "https://github.com/sapporo-wes/tataki" license = "apache-2.0" diff --git a/README.md b/README.md index 809b90e..49f4551 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Options: -h, --help Print help -V, --version Print version -Version: 0.2.1 +Version: v0.2.2 ``` ## Detailed Usage @@ -89,7 +89,7 @@ The configuration file is in YAML format. Please refer to the default configurat The default configuration can be achieved by using the `--dry-run` option. ```yaml -# tataki --dry-run +# $ tataki --dry-run order: - bam - bcf diff --git a/src/args.rs b/src/args.rs index 8aa2f5a..6536351 100644 --- a/src/args.rs +++ b/src/args.rs @@ -14,7 +14,7 @@ pub enum OutputFormat { name = env!("CARGO_PKG_NAME"), about = env!("CARGO_PKG_DESCRIPTION"), version = env!("CARGO_PKG_VERSION"), - after_help = concat!("Version: ", env!("CARGO_PKG_VERSION")), + after_help = concat!("Version: v", env!("CARGO_PKG_VERSION")), arg_required_else_help = true, )]