From 4242c343943c6b041dcca6abc3f32c3403dfa6e5 Mon Sep 17 00:00:00 2001 From: ClementTsang <34804052+ClementTsang@users.noreply.github.com> Date: Fri, 23 Jun 2023 18:38:10 -0400 Subject: [PATCH 1/2] uptick: 0.9.3 --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- CHANGELOG.md | 6 +++++- README.md | 26 ++++++++++++++------------ 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 51421f76e..0e9dab642 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -58,7 +58,7 @@ body: description: > Please provide which version of `bottom` you're running, which you can find with `btm -V`. If you are using a nightly/non-release version, please also specify that. - placeholder: 0.9.2 + placeholder: 0.9.3 - type: input id: install diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f0c4620..ca344485b 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.9.3]/[0.10.0] - Unreleased +## [0.9.3] - 2023-06-24 ## Bug Fixes @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#1221](https://github.com/ClementTsang/bottom/pull/1221): Support human times for `rate`. +## Other + +- [1220](https://github.com/ClementTsang/bottom/pull/1220): Update documentation for features supporting human times. + ## [0.9.2] - 2023-06-11 ## Bug Fixes diff --git a/README.md b/README.md index 67571e94e..a8cad0104 100644 --- a/README.md +++ b/README.md @@ -163,16 +163,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.9.2/bottom_0.9.2_amd64.deb -sudo dpkg -i bottom_0.9.2_amd64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.3/bottom_0.9.3_amd64.deb +sudo dpkg -i bottom_0.9.3_amd64.deb # ARM64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.2/bottom_0.9.2_arm64.deb -sudo dpkg -i bottom_0.9.2_arm64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.3/bottom_0.9.3_arm64.deb +sudo dpkg -i bottom_0.9.3_arm64.deb # ARM -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.2/bottom_0.9.2_armhf.deb -sudo dpkg -i bottom_0.9.2_armhf.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.3/bottom_0.9.3_armhf.deb +sudo dpkg -i bottom_0.9.3_armhf.deb ``` ### Snap @@ -198,13 +198,15 @@ sudo dnf copr enable atim/bottom -y sudo dnf install bottom ``` - - -`.rpm` files are also generated (currently only for [nightly builds](https://github.com/ClementTsang/bottom/releases/tag/nightly)) -for x86. If you wish to install this way, then you can do something like: +`.rpm` files are also generated (starting from 0.9.3) for x86. If you wish to install this way, then you can do +something like: ```bash # x86-64 +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.3/bottom-0.9.3-1.x86_64.rpm +sudo rpm -i bottom-0.9.3-1.x86_64.rpm + +# Nightly x86-64 curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.3-1.x86_64.rpm sudo rpm -i bottom-0.9.3-1.x86_64.rpm ``` @@ -302,8 +304,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.9.2.tar.gz -tar -xzvf 0.9.2.tar.gz +curl -LO https://github.com/ClementTsang/bottom/archive/0.9.3.tar.gz +tar -xzvf 0.9.3.tar.gz cargo install --path . --locked # Option 2 - Clone from master and install manually From 8613327249002911f6361adeac657b8d16c6ccc1 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sun, 25 Jun 2023 00:30:39 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca344485b..990992ad9 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.9.3] - 2023-06-24 +## [0.9.3] - 2023-06-25 ## Bug Fixes