Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ksk001100 committed Dec 10, 2019
1 parent 369cf5d commit cde8a66
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seahorse"
version = "0.2.0"
version = "0.2.1"
authors = ["KeisukeToyota <[email protected]>"]
edition = "2018"
keywords = ["cli"]
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# seahorse

[![crates.io](https://img.shields.io/crates/v/seahorse.svg)](https://crates.io/crates/seahorse)
![](https://img.shields.io/github/release/KeisukeToyota/seahorse.svg)
![](https://img.shields.io/github/issues/KeisukeToyota/seahorse.svg)
![](https://img.shields.io/github/forks/KeisukeToyota/seahorse.svg)
![](https://img.shields.io/github/license/KeisukeToyota/seahorse.svg)

A minimal CLI framework written in Rust

## Using

```toml
[dependencies]
seahorse = "0.2.0"
seahorse = "0.2.1"
```

## Example
Expand All @@ -32,7 +38,7 @@ fn main() {

let mut app = App::new()
.name("cli_tool")
.display_name("display_name")
.display_name(display_name)
.usage("cli_tool [command] [arg]")
.version(env!("CARGO_PKG_VERSION"))
.commands(vec![command]);
Expand Down

0 comments on commit cde8a66

Please sign in to comment.