diff --git a/CHANGELOG.md b/CHANGELOG.md index 13139d2..1c2dedb 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.2] - 2020-05-16 + ### Added - [process] add process count @@ -136,7 +138,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.1...HEAD +[Unreleased]: https://github.com/cjbassi/ytop/compare/0.6.2...HEAD +[0.6.2]: https://github.com/cjbassi/ytop/compare/0.6.1...0.6.2 [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 diff --git a/Cargo.lock b/Cargo.lock index 392d61c..6a74ad6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "ytop" -version = "0.6.1" +version = "0.6.2" dependencies = [ "battery", "better-panic", diff --git a/Cargo.toml b/Cargo.toml index e7109dc..92949cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytop" -version = "0.6.1" +version = "0.6.2" 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 4424ff3..b6eecc4 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.1"; +const VERSION: &str = "0.6.2"; const AUR_DIR: &str = "/home/cjbassi/playground/packages/ytop"; const AUR_BIN_DIR: &str = "/home/cjbassi/playground/packages/ytop-bin";