1
0
mirror of https://github.com/danog/ytop.git synced 2024-11-26 12:04:50 +01:00
This commit is contained in:
Caleb Bassi 2020-04-21 18:03:19 -07:00
parent 22dc1294a0
commit 74f697f6dc
4 changed files with 7 additions and 4 deletions

View File

@ -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

2
Cargo.lock generated
View File

@ -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)",

View File

@ -1,6 +1,6 @@
[package]
name = "ytop"
version = "0.5.1"
version = "0.6.0"
authors = ["Caleb Bassi <calebjbassi@gmail.com>"]
license = "MIT"
description = "A TUI system monitor written in Rust"

View File

@ -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";