mirror of
https://github.com/danog/ytop.git
synced 2024-11-26 20:15:03 +01:00
0.4.3
This commit is contained in:
parent
8936596155
commit
f2497be6b7
@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.4.3] - 2020-02-14
|
||||
|
||||
### Fixed
|
||||
|
||||
- [disk] fix disk widget constantly resizing
|
||||
@ -83,7 +85,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.2...HEAD
|
||||
[Unreleased]: https://github.com/cjbassi/ytop/compare/0.4.3...HEAD
|
||||
[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
|
||||
[0.4.0]: https://github.com/cjbassi/ytop/compare/0.3.0...0.4.0
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1059,7 +1059,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ytop"
|
||||
version = "0.4.2"
|
||||
version = "0.4.3"
|
||||
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)",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ytop"
|
||||
version = "0.4.2"
|
||||
version = "0.4.3"
|
||||
authors = ["Caleb Bassi <calebjbassi@gmail.com>"]
|
||||
license = "MIT"
|
||||
description = "A TUI system monitor written in Rust"
|
||||
|
@ -2,7 +2,7 @@ use sha2::{Digest, Sha256};
|
||||
use std::fs;
|
||||
use std::process::Command;
|
||||
|
||||
const VERSION: &str = "0.4.2";
|
||||
const VERSION: &str = "0.4.3";
|
||||
|
||||
async fn fetch_archive(url: &str) -> Vec<u8> {
|
||||
reqwest::get(url)
|
||||
|
Loading…
Reference in New Issue
Block a user