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-04 17:25:48 -08:00
parent 98ace7c8f5
commit 4edecf8aaf
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.4.1] - 2020-02-04
### Fixed
- [battery] fix battery percent
@ -67,7 +69,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.0...HEAD
[Unreleased]: https://github.com/cjbassi/ytop/compare/0.4.1...HEAD
[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
[0.3.0]: https://github.com/cjbassi/ytop/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/cjbassi/ytop/compare/0.1.0...0.2.0

2
Cargo.lock generated
View File

@ -1053,7 +1053,7 @@ dependencies = [
[[package]]
name = "ytop"
version = "0.4.0"
version = "0.4.1"
dependencies = [
"anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
"battery 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",

View File

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

View File

@ -2,7 +2,7 @@ use sha2::{Digest, Sha256};
use std::fs;
use std::process::Command;
const VERSION: &str = "0.4.0";
const VERSION: &str = "0.4.1";
async fn fetch_archive(url: &str) -> Vec<u8> {
reqwest::get(url)