summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThang Pham <phamducthang1234@gmail.com>2022-01-16 13:00:26 -0500
committerThang Pham <phamducthang1234@gmail.com>2022-01-16 13:00:26 -0500
commit8f30cc728df73257888dba7afbc812b4065c93db (patch)
treef15fa511e2a5b3446310155b9b593c7c8be4195d
parent3be6130de1e48ca2e117683195280c61982a9bf7 (diff)
bump app's version to `0.9.1`v0.9.1
-rw-r--r--Cargo.lock2
-rw-r--r--hackernews_tui/Cargo.toml2
-rw-r--r--hackernews_tui/src/main.rs3
3 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 09d768a..8978c8d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -493,7 +493,7 @@ dependencies = [
[[package]]
name = "hackernews_tui"
-version = "0.9.0"
+version = "0.9.1"
dependencies = [
"anyhow",
"clap",
diff --git a/hackernews_tui/Cargo.toml b/hackernews_tui/Cargo.toml
index cc2528c..4c3f5e0 100644
--- a/hackernews_tui/Cargo.toml
+++ b/hackernews_tui/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hackernews_tui"
-version = "0.9.0"
+version = "0.9.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 9c0434d..680b7fc 100644
--- a/hackernews_tui/src/main.rs
+++ b/hackernews_tui/src/main.rs
@@ -155,8 +155,9 @@ fn init_logging(log_folder_path: Option<&str>) {
fn main() {
// parse command line arguments
let args = App::new("hackernews-tui")
- .version("0.9.0")
+ .version("0.9.1")
.author("Thang Pham <phamducthang1234@gmail>")
+ .about("A Terminal UI to browse Hacker News")
.arg(
Arg::new("config")
.short('c')