From 2d945a66a34a13ec949bb35e5b50cdde767383aa Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Sun, 10 May 2020 14:26:11 -0700 Subject: [PATCH] 0.6.1 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- package-publisher/src/main.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37f753d..1dd83f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1] - 2020-05-10 + ### Fixed - [cpu/mem] fix line graph drawing @@ -124,7 +126,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release! -[Unreleased]: https://github.com/cjbassi/ytop/compare/0.6.0...HEAD +[Unreleased]: https://github.com/cjbassi/ytop/compare/0.6.1...HEAD +[0.6.1]: https://github.com/cjbassi/ytop/compare/0.6.0...0.6.1 [0.6.0]: https://github.com/cjbassi/ytop/compare/0.5.1...0.6.0 [0.5.1]: https://github.com/cjbassi/ytop/compare/0.5.0...0.5.1 [0.5.0]: https://github.com/cjbassi/ytop/compare/0.4.3...0.5.0 diff --git a/Cargo.lock b/Cargo.lock index e5f9fed..392d61c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "ytop" -version = "0.6.0" +version = "0.6.1" dependencies = [ "battery", "better-panic", diff --git a/Cargo.toml b/Cargo.toml index c846b9a..e7109dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytop" -version = "0.6.0" +version = "0.6.1" authors = ["Caleb Bassi "] license = "MIT" description = "A TUI system monitor written in Rust" diff --git a/package-publisher/src/main.rs b/package-publisher/src/main.rs index 70f8198..4424ff3 100644 --- a/package-publisher/src/main.rs +++ b/package-publisher/src/main.rs @@ -7,7 +7,7 @@ use hex; use tokio; use reqwest; -const VERSION: &str = "0.6.0"; +const VERSION: &str = "0.6.1"; const AUR_DIR: &str = "/home/cjbassi/playground/packages/ytop"; const AUR_BIN_DIR: &str = "/home/cjbassi/playground/packages/ytop-bin";