summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThang Pham <phamducthang1234@gmail.com>2021-05-02 15:16:22 +0900
committerThang Pham <phamducthang1234@gmail.com>2021-05-02 15:16:22 +0900
commita029efbaccfad16e54ef872216b56608e8bcf366 (patch)
tree8a29b4d081674e2f665a2c8bb0e04a3345cb8a76
parentd271948eb7bf6bb0d91a34be79128c24c408b15e (diff)
release v0.6.0v0.6.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
-rw-r--r--src/main.rs2
4 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d51bb46..6a9db74 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -428,7 +428,7 @@ dependencies = [
[[package]]
name = "hackernews_tui"
-version = "0.5.1"
+version = "0.6.0"
dependencies = [
"anyhow",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index c55929a..7a0a3b8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hackernews_tui"
-version = "0.5.1"
+version = "0.6.0"
authors = ["Thang Pham <phamducthang1234@gmail.com>"]
edition = "2018"
license = "MIT"
diff --git a/README.md b/README.md
index 2a63434..ebc1922 100644
--- a/README.md
+++ b/README.md
@@ -114,7 +114,7 @@ $ cd /usr/pkgsrc/www/hackernews-tui
List of demo videos:
- `hackernews_tui v0.5.0`: demo general usage of `Story View`, `Search View` and `Comment View` can be found [here](https://www.youtube.com/watch?v=AArtVod0b6A)
-- `hackernews_tui v0.6.0`: demo the usage of `Article View` to read a web page in reader mode can be found [here](https://www.youtube.com/watch?v=jIsKZwPi2T8)
+- `hackernews_tui v0.6.0-beta`: demo the usage of `Article View` to read a web page in reader mode can be found [here](https://www.youtube.com/watch?v=jIsKZwPi2T8)
### Story View
diff --git a/src/main.rs b/src/main.rs
index 0f5a5aa..99a703f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -136,7 +136,7 @@ fn main() {
// parse command line arguments
let matches = App::new("hackernews-tui")
- .version("0.5.0")
+ .version("0.6.0")
.author("Thang Pham <phamducthang1234@gmail>")
.arg(
Arg::with_name("config")