diff options
author | Thang Pham <phamducthang1234@gmail.com> | 2022-05-22 17:01:19 -0400 |
---|---|---|
committer | Thang Pham <phamducthang1234@gmail.com> | 2022-05-22 17:01:19 -0400 |
commit | 83ee1dcf52e2e5638490f958e1ab808133881a57 (patch) | |
tree | e85550eca259265a3d3af439bed6fa6afd4f6726 | |
parent | 0c103c56cf0417a43dd3eec648435d5c80b12814 (diff) |
bump app's version to 0.10.1v0.10.1
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | hackernews_tui/Cargo.toml | 2 | ||||
-rw-r--r-- | hackernews_tui/src/main.rs | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -502,7 +502,7 @@ dependencies = [ [[package]] name = "hackernews_tui" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "clap", diff --git a/hackernews_tui/Cargo.toml b/hackernews_tui/Cargo.toml index af44383..bfcc6f3 100644 --- a/hackernews_tui/Cargo.toml +++ b/hackernews_tui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hackernews_tui" -version = "0.10.0" +version = "0.10.1" authors = ["Thang Pham <phamducthang1234@gmail.com>"] edition = "2021" license = "MIT" diff --git a/hackernews_tui/src/main.rs b/hackernews_tui/src/main.rs index 3f7ede7..d3a3103 100644 --- a/hackernews_tui/src/main.rs +++ b/hackernews_tui/src/main.rs @@ -55,7 +55,7 @@ fn init_logging(log_dir_str: &str) { /// parse command line arguments fn parse_args(config_dir: &std::path::Path, cache_dir: &std::path::Path) -> ArgMatches { Command::new("hackernews-tui") - .version("0.10.0") + .version("0.10.1") .author("Thang Pham <phamducthang1234@gmail>") .about("A Terminal UI to browse Hacker News") .arg( |