summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThang Pham <phamducthang1234@gmail.com>2021-12-14 12:13:42 -0500
committerThang Pham <phamducthang1234@gmail.com>2021-12-14 12:13:42 -0500
commitb123a002789a3aaeddfba29a239e896bb6546c06 (patch)
tree4fd2063fe31a41db8c162cf52dd69df22b8eba37
parent78ba9882c7bd8d95675345181a781b91781c9bf9 (diff)
bump app's version to 0.8.1v0.8.1
-rw-r--r--Cargo.lock2
-rw-r--r--hackernews_tui/Cargo.toml2
-rw-r--r--hackernews_tui/src/main.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f2da1c1..124fb9d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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")