Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ksk001100 committed Dec 9, 2019
1 parent 4373d06 commit 050bd3a
Show file tree
Hide file tree
Showing 3 changed files with 3 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.1.0"
version = "0.1.1"
authors = ["KeisukeToyota <[email protected]>"]
edition = "2018"
keywords = ["cli"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A minimal CLI framework written in Rust

```toml
[dependencies]
seahorse = { version = "0.1.0", git = "https://github.com/KeisukeToyota/seahorse.git" }
seahorse = "0.1.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ impl App {

println!("Commands:");
for c in &self.commands {
println!(" {} {} [arg]", self.name, c.name)
println!(" {}", c.usage);
}
}

Expand Down

0 comments on commit 050bd3a

Please sign in to comment.