diff options
author | Clement Tsang <34804052+ClementTsang@users.noreply.github.com> | 2024-08-06 00:28:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 20:28:17 -0400 |
commit | 2ec1fb56c9db0b37acc4eca3230adfb52720376b (patch) | |
tree | e6ffbd0a5f5c7d1c0ffbe3de088e351aedeb3376 | |
parent | 32f64f4d52a0135acd9c5f1a15e97d60cf539d2e (diff) |
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 2 | ||||
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 20 | ||||
-rw-r--r-- | desktop/bottom.desktop | 2 |
6 files changed, 15 insertions, 15 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ad1bc555..f399475d 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.1 + placeholder: 0.10.2 - type: textarea id: install diff --git a/CHANGELOG.md b/CHANGELOG.md index e193b40a..a3358450 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.11.0]/[0.10.2] - Unreleased +## [0.10.2] - 2024-08-05 ### Features @@ -155,7 +155,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bottom" -version = "0.10.1" +version = "0.10.2" dependencies = [ "anyhow", "assert_cmd", @@ -1,6 +1,6 @@ [package] name = "bottom" -version = "0.10.1" +version = "0.10.2" authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"] edition = "2021" repository = "https://github.com/ClementTsang/bottom" @@ -159,8 +159,8 @@ Alternatively, if you can use `cargo install` using the repo as the source. rustup update stable # Option 1 - Download an archive from releases and install -curl -LO https://github.com/ClementTsang/bottom/archive/0.10.1.tar.gz -tar -xzvf 0.10.1.tar.gz +curl -LO https://github.com/ClementTsang/bottom/archive/0.10.2.tar.gz +tar -xzvf 0.10.2.tar.gz cargo install --path . --locked # Option 2 - Manually clone the repo and install @@ -199,16 +199,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.1/bottom_0.10.1_amd64.deb -sudo dpkg -i bottom_0.10.1_amd64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_amd64.deb +sudo dpkg -i bottom_0.10.2_amd64.deb # ARM64 -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 +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_arm64.deb +sudo dpkg -i bottom_0.10.2_arm64.deb # ARM -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 +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_armhf.deb +sudo dpkg -i bottom_0.10.2_armhf.deb ``` ### Exherbo Linux @@ -233,8 +233,8 @@ sudo dnf install bottom For example: ```bash -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 +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom-0.10.2-1.x86_64.rpm +sudo rpm -i bottom-0.10.2-1.x86_64.rpm ``` ### Gentoo diff --git a/desktop/bottom.desktop b/desktop/bottom.desktop index 3eac0bf4..b9ff4674 100644 --- a/desktop/bottom.desktop +++ b/desktop/bottom.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Name=bottom -Version=0.10.1 +Version=0.10.2 GenericName=System Monitor Comment=A customizable cross-platform graphical process/system monitor for the terminal. Exec=btm |