summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-05-10 03:17:25 -0400
committerGitHub <noreply@github.com>2023-05-10 03:17:25 -0400
commit8777143801ae6bf6a48e85d111b1bd0dcbdab010 (patch)
treef4effc99b1b3c55f9598dd052b4b86dcebaf4f47 /README.md
parentefe65ecbe2f7bc9bdc7ecd1ba937e10469da62e0 (diff)
uptick: 0.9.0 (#1143)0.9.0
* uptick: 0.9.0 * years are hard * update changelog
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index cfd4fe36..43a7a55e 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.8.0/bottom_0.8.0_amd64.deb
-sudo dpkg -i bottom_0.8.0_amd64.deb
+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
# ARM64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_arm64.deb
-sudo dpkg -i bottom_0.8.0_arm64.deb
+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
# ARM
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_armhf.deb
-sudo dpkg -i bottom_0.8.0_armhf.deb
+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
```
### Snap
@@ -251,7 +251,7 @@ choco install bottom
# The version number may need to be specified for newer releases for the first
# few hours/days during the approval process:
-choco install bottom --version=0.8.0
+choco install bottom --version=0.9.0
```
### winget
@@ -282,8 +282,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.8.0.tar.gz
-tar -xzvf 0.8.0.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/archive/0.9.0.tar.gz
+tar -xzvf 0.9.0.tar.gz
cargo install --path .
# Option 2 - Clone from master and install manually