1
0
mirror of https://github.com/danog/ytop.git synced 2024-11-30 04:29:10 +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] ## [Unreleased]
## [0.5.0] - 2020-02-16
### Added ### Added
- implement `interval` cli arg - implement `interval` cli arg
- implement `interface` cli arg - implement `interface` cli arg
### Fixed
- [net] fix double-counting of IO counters when a VPN is enabled
### Changed ### Changed
- Change `rate` cli arg to `interval` - 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 ## [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! 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.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.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 [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]] [[package]]
name = "ytop" name = "ytop"
version = "0.4.3" version = "0.5.0"
dependencies = [ dependencies = [
"battery 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "better-panic 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

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

View File

@ -7,7 +7,7 @@ use hex;
use tokio; use tokio;
use reqwest; 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_DIR: &str = "/home/cjbassi/playground/packages/ytop";
const AUR_BIN_DIR: &str = "/home/cjbassi/playground/packages/ytop-bin"; const AUR_BIN_DIR: &str = "/home/cjbassi/playground/packages/ytop-bin";