From 74f697f6dca75e8d126d815e43a09d696fb3ede6 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Tue, 21 Apr 2020 18:03:19 -0700 Subject: [PATCH] 0.6.0 --- 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 2fda06d..a3d9e60 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.0] - 2020-04-21 + ### Added - [temp] add temperature on macOS @@ -118,7 +120,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.5.1...HEAD +[Unreleased]: https://github.com/cjbassi/ytop/compare/0.6.0...HEAD +[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 [0.4.3]: https://github.com/cjbassi/ytop/compare/0.4.2...0.4.3 diff --git a/Cargo.lock b/Cargo.lock index 8367e77..af26f78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1083,7 +1083,7 @@ dependencies = [ [[package]] name = "ytop" -version = "0.5.1" +version = "0.6.0" dependencies = [ "battery 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", "better-panic 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 776ad29..f579280 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytop" -version = "0.5.1" +version = "0.6.0" 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 17394f9..70f8198 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.5.1"; +const VERSION: &str = "0.6.0"; const AUR_DIR: &str = "/home/cjbassi/playground/packages/ytop"; const AUR_BIN_DIR: &str = "/home/cjbassi/playground/packages/ytop-bin";