diff options
author | Thang Pham <phamducthang1234@gmail.com> | 2021-05-19 20:00:53 +0900 |
---|---|---|
committer | Thang Pham <phamducthang1234@gmail.com> | 2021-05-19 20:00:53 +0900 |
commit | 55948d8ebb52f9c161b8249fe31572d559d92662 (patch) | |
tree | 033fccf4ab4cf531ab07e097cd219fba7c617387 | |
parent | fc665b672d72938cc4e8b6d5cd4035edae22ed0e (diff) |
change app version to 0.6.1v0.6.1
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/main.rs | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -428,7 +428,7 @@ dependencies = [ [[package]] name = "hackernews_tui" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "clap", @@ -1,6 +1,6 @@ [package] name = "hackernews_tui" -version = "0.6.0" +version = "0.6.1" authors = ["Thang Pham <phamducthang1234@gmail.com>"] edition = "2018" license = "MIT" diff --git a/src/main.rs b/src/main.rs index 77b7ef8..0f1e81b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -205,7 +205,7 @@ fn main() { // parse command line arguments let matches = App::new("hackernews-tui") - .version("0.6.0") + .version("0.6.1") .author("Thang Pham <phamducthang1234@gmail>") .arg( Arg::with_name("config") |