diff options
author | Clement Tsang <34804052+ClementTsang@users.noreply.github.com> | 2024-08-01 15:56:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 15:56:39 +0000 |
commit | 2f102bc1aa7fcd05f40e616c743804295300a490 (patch) | |
tree | 1d1d2e4753bbfeb8a9e83721fafcf3b6de256d28 | |
parent | 5b68b6ee81430b5eedbf07a95e33c20fbfca3903 (diff) |
uptick: 0.10.1 (#1527)0.10.1
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 2 | ||||
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 24 | ||||
-rw-r--r-- | desktop/bottom.desktop | 2 |
6 files changed, 22 insertions, 16 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 85c79338..ad1bc555 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -79,7 +79,7 @@ body: It would also be helpful if you are not running [the latest version](https://github.com/ClementTsang/bottom/releases/latest) to try that as well to see if the issue has already been resolved. - placeholder: 0.10.0 + placeholder: 0.10.1 - type: textarea id: install diff --git a/CHANGELOG.md b/CHANGELOG.md index 824cc610..d454294c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.1] - 2024-08-01 + +### Bug Fixes + +- [#1526](https://github.com/ClementTsang/bottom/pull/1526): Fix `--help` description being incorrectly set for a flag. + ## [0.10.0] - 2024-08-01 ### Features @@ -155,7 +155,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bottom" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "assert_cmd", @@ -1,6 +1,6 @@ [package] name = "bottom" -version = "0.10.0" +version = "0.10.1" authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"] edition = "2021" repository = "https://github.com/ClementTsang/bottom" @@ -175,16 +175,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa ```bash # x86-64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom_0.10.0_amd64.deb -sudo dpkg -i bottom_0.10.0_amd64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom_0.10.1_amd64.deb +sudo dpkg -i bottom_0.10.1_amd64.deb # ARM64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom_0.10.0_arm64.deb -sudo dpkg -i bottom_0.10.0_arm64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom_0.10.1_arm64.deb +sudo dpkg -i bottom_0.10.1_arm64.deb # ARM -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom_0.10.0_armhf.deb -sudo dpkg -i bottom_0.10.0_armhf.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom_0.10.1_armhf.deb +sudo dpkg -i bottom_0.10.1_armhf.deb ``` ### Exherbo Linux @@ -210,12 +210,12 @@ something like: ```bash # x86-64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom-0.10.0-1.x86_64.rpm -sudo rpm -i bottom-0.10.0-1.x86_64.rpm +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom-0.10.1-1.x86_64.rpm +sudo rpm -i bottom-0.10.1-1.x86_64.rpm # Nightly x86-64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.10.0-1.x86_64.rpm -sudo rpm -i bottom-0.10.0-1.x86_64.rpm +curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.10.1-1.x86_64.rpm +sudo rpm -i bottom-0.10.1-1.x86_64.rpm ``` ### Gentoo @@ -326,8 +326,8 @@ to do so using the most recent version of stable Rust, which is how the binaries rustup update stable # Option 1 - Download from releases and install -curl -LO https://github.com/ClementTsang/bottom/archive/0.10.0.tar.gz -tar -xzvf 0.10.0.tar.gz +curl -LO https://github.com/ClementTsang/bottom/archive/0.10.1.tar.gz +tar -xzvf 0.10.1.tar.gz cargo install --path . --locked # Option 2 - Clone the repo and install manually diff --git a/desktop/bottom.desktop b/desktop/bottom.desktop index 7a9e1050..3eac0bf4 100644 --- a/desktop/bottom.desktop +++ b/desktop/bottom.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Name=bottom -Version=0.10.0 +Version=0.10.1 GenericName=System Monitor Comment=A customizable cross-platform graphical process/system monitor for the terminal. Exec=btm |