diff options
author | Thang Pham <phamducthang1234@gmail.com> | 2021-12-14 12:13:42 -0500 |
---|---|---|
committer | Thang Pham <phamducthang1234@gmail.com> | 2021-12-14 12:13:42 -0500 |
commit | b123a002789a3aaeddfba29a239e896bb6546c06 (patch) | |
tree | 4fd2063fe31a41db8c162cf52dd69df22b8eba37 | |
parent | 78ba9882c7bd8d95675345181a781b91781c9bf9 (diff) |
bump app's version to 0.8.1v0.8.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
@@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "hackernews_tui" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "clap", diff --git a/hackernews_tui/Cargo.toml b/hackernews_tui/Cargo.toml index 6fb4e70..c853eaf 100644 --- a/hackernews_tui/Cargo.toml +++ b/hackernews_tui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hackernews_tui" -version = "0.8.0" +version = "0.8.1" authors = ["Thang Pham <phamducthang1234@gmail.com>"] edition = "2018" license = "MIT" diff --git a/hackernews_tui/src/main.rs b/hackernews_tui/src/main.rs index 64d4778..862023d 100644 --- a/hackernews_tui/src/main.rs +++ b/hackernews_tui/src/main.rs @@ -147,7 +147,7 @@ fn init_logging(log_folder_path: Option<&str>) { fn main() { // parse command line arguments let args = App::new("hackernews-tui") - .version("0.8.0") + .version("0.8.1") .author("Thang Pham <phamducthang1234@gmail>") .arg( Arg::with_name("config") |