Skip to content

Commit

Permalink
Update version number in Cargo.toml and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaccha committed Feb 8, 2024
1 parent 54462ab commit f757f2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tataki"
authors = ["Tazro Ohta ([email protected])"]
version = "0.2.1"
version = "0.2.2"
edition = "2021"
repository = "https://github.com/sapporo-wes/tataki"
license = "apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Options:
-h, --help Print help
-V, --version Print version

Version: 0.2.1
Version: v0.2.2
```

## Detailed Usage
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)]

Expand Down

0 comments on commit f757f2c

Please sign in to comment.