Skip to content

Commit

Permalink
Stop printing author info on help
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Jun 19, 2022
1 parent f723fb0 commit 3ed80b6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jyt"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["Ken Matsui <[email protected]>"]
description = "A tridirectional converter between Json, Yaml, and Toml"
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ graph LR;
```bash
$ jyt --help
jyt 0.1.0
Ken Matsui <[email protected]>
A tridirectional converter between Json, Yaml, and Toml

USAGE:
Expand All @@ -60,7 +59,6 @@ SUBCOMMANDS:
```bash
$ wapm run jyt -- --help
jyt 0.1.0
Ken Matsui <[email protected]>
A tridirectional converter between Json, Yaml, and Toml

USAGE:
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion wapm.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 3ed80b6

Please sign in to comment.