summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-05-14 00:13:12 -0400
committerGitHub <noreply@github.com>2023-05-14 00:13:12 -0400
commitd019181b2dcf16febeb6f1f78994431dedbb7201 (patch)
tree43bb802ebec5dcc329018ae9951663f20ff9e695
parent7bd93f2c7c5f02a7ef1dfd48af309ef5361bddb8 (diff)
uptick: 0.9.1 (#1153)0.9.1
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml2
-rw-r--r--CHANGELOG.md2
-rw-r--r--README.md16
3 files changed, 10 insertions, 10 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index 4a6cdccb..773df778 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.0
+ placeholder: 0.9.1
- type: input
id: install
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0bcb5ed2..7718cde3 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.1] - Unreleased
+## [0.9.1] - 2023-05-14
## Bug Fixes
diff --git a/README.md b/README.md
index c0306777..e3305651 100644
--- a/README.md
+++ b/README.md
@@ -162,16 +162,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.0/bottom_0.9.0_amd64.deb
-sudo dpkg -i bottom_0.9.0_amd64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.1/bottom_0.9.1_amd64.deb
+sudo dpkg -i bottom_0.9.1_amd64.deb
# ARM64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_arm64.deb
-sudo dpkg -i bottom_0.9.0_arm64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.1/bottom_0.9.1_arm64.deb
+sudo dpkg -i bottom_0.9.1_arm64.deb
# ARM
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_armhf.deb
-sudo dpkg -i bottom_0.9.0_armhf.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.1/bottom_0.9.1_armhf.deb
+sudo dpkg -i bottom_0.9.1_armhf.deb
```
### Snap
@@ -278,8 +278,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.0.tar.gz
-tar -xzvf 0.9.0.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/archive/0.9.1.tar.gz
+tar -xzvf 0.9.1.tar.gz
cargo install --path . --locked
# Option 2 - Clone from master and install manually