diff options
author | Thang Pham <phamducthang1234@gmail.com> | 2022-05-22 16:58:36 -0400 |
---|---|---|
committer | Thang Pham <phamducthang1234@gmail.com> | 2022-05-22 16:58:36 -0400 |
commit | 39b420e321337f6ae6438ca390bcaba082c22b96 (patch) | |
tree | 795111dce4eda17be57c0930508834dc3fc21d0e | |
parent | 8abffb44f976376dc4c8c3d5f5764199db48b4d1 (diff) |
bump app's version to 0.10.0
-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.9.1" +version = "0.10.0" dependencies = [ "anyhow", "clap", diff --git a/hackernews_tui/Cargo.toml b/hackernews_tui/Cargo.toml index 3e2a7c7..af44383 100644 --- a/hackernews_tui/Cargo.toml +++ b/hackernews_tui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hackernews_tui" -version = "0.9.1" +version = "0.10.0" 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 73e40e3..3f99af5 100644 --- a/hackernews_tui/src/main.rs +++ b/hackernews_tui/src/main.rs @@ -151,7 +151,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.9.1") + .version("0.10.0") .author("Thang Pham <phamducthang1234@gmail>") .about("A Terminal UI to browse Hacker News") .arg( |