summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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')