1
0
mirror of https://github.com/danog/ytop.git synced 2024-11-26 20:15:03 +01:00
This commit is contained in:
Caleb Bassi 2020-02-16 08:00:22 -08:00
parent 0192ff8499
commit a7cfd2956a
4 changed files with 12 additions and 8 deletions

View File

@ -15,18 +15,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.5.0] - 2020-02-16
### Added
- implement `interval` cli arg
- implement `interface` cli arg
### Fixed
- [net] fix double-counting of IO counters when a VPN is enabled
### Changed
- Change `rate` cli arg to `interval`
- Change `interfaces` cli arg to `interface`
### Fixed
- [net] fix double-counting of IO counters when a VPN is enabled
## [0.4.3] - 2020-02-14
@ -98,7 +101,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.4.3...HEAD
[Unreleased]: https://github.com/cjbassi/ytop/compare/0.5.0...HEAD
[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
[0.4.2]: https://github.com/cjbassi/ytop/compare/0.4.1...0.4.2
[0.4.1]: https://github.com/cjbassi/ytop/compare/0.4.0...0.4.1

2
Cargo.lock generated
View File

@ -1059,7 +1059,7 @@ dependencies = [
[[package]]
name = "ytop"
version = "0.4.3"
version = "0.5.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.4.3"
version = "0.5.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.4.3";
const VERSION: &str = "0.5.0";
const AUR_DIR: &str = "/home/cjbassi/playground/packages/ytop";
const AUR_BIN_DIR: &str = "/home/cjbassi/playground/packages/ytop-bin";