From f2497be6b7cad5bd52120237c8f28bb2ba348e77 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Fri, 14 Feb 2020 10:18:11 -0800 Subject: [PATCH] 0.4.3 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- package-publisher/src/main.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb6d64b..8de8c45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 6a1029e..ee60f78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", diff --git a/Cargo.toml b/Cargo.toml index ff708d7..66a82e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ytop" -version = "0.4.2" +version = "0.4.3" authors = ["Caleb Bassi "] license = "MIT" description = "A TUI system monitor written in Rust" diff --git a/package-publisher/src/main.rs b/package-publisher/src/main.rs index 38ba98f..c26150e 100644 --- a/package-publisher/src/main.rs +++ b/package-publisher/src/main.rs @@ -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 { reqwest::get(url)