diff --git a/Cargo.lock b/Cargo.lock index f3d1fd8..061df4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -256,7 +256,7 @@ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" [[package]] name = "jyt" -version = "0.1.2" +version = "0.1.3" dependencies = [ "cbindgen", "clap", diff --git a/Cargo.toml b/Cargo.toml index ef44116..a357744 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jyt" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["Ken Matsui <26405363+ken-matsui@users.noreply.github.com>"] description = "A tridirectional converter between Json, Yaml, and Toml" diff --git a/README.md b/README.md index cd24ac3..7a5b8c2 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,6 @@ graph LR; ```bash $ jyt --help jyt 0.1.0 -Ken Matsui <26405363+ken-matsui@users.noreply.github.com> A tridirectional converter between Json, Yaml, and Toml USAGE: @@ -60,7 +59,6 @@ SUBCOMMANDS: ```bash $ wapm run jyt -- --help jyt 0.1.0 -Ken Matsui <26405363+ken-matsui@users.noreply.github.com> A tridirectional converter between Json, Yaml, and Toml USAGE: diff --git a/src/main.rs b/src/main.rs index 4209ad9..f7cd0e9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ use std::io; use std::io::BufRead; #[derive(Parser)] -#[clap(author, version, about, long_about = None)] +#[clap(version, about, long_about = None)] #[clap(propagate_version = true)] struct Cli { #[clap(subcommand)] diff --git a/wapm.toml b/wapm.toml index 4b9745b..14cbd35 100644 --- a/wapm.toml +++ b/wapm.toml @@ -1,6 +1,6 @@ [package] name = "ken-matsui/jyt" -version = "0.1.2" +version = "0.1.3" description = "A tridirectional converter between Json, Yaml, and Toml" license = "MIT" readme = "README.md"