summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-08-26 21:27:19 -0400
committerGitHub <noreply@github.com>2023-08-26 21:27:19 -0400
commit6d251098710f3119af11ecdd8761929acb010fab (patch)
treeddab652e0271c34ad92eafae16cf232479344385 /README.md
parent1ef0c05aa68a937e2d6f8cfef45c8cfb4c310d2d (diff)
uptick: 0.9.6 (#1288)0.9.6
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/README.md b/README.md
index 013ddc57..469df306 100644
--- a/README.md
+++ b/README.md
@@ -165,16 +165,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.5/bottom_0.9.5_amd64.deb
-sudo dpkg -i bottom_0.9.5_amd64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_amd64.deb
+sudo dpkg -i bottom_0.9.6_amd64.deb
# ARM64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.5/bottom_0.9.5_arm64.deb
-sudo dpkg -i bottom_0.9.5_arm64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_arm64.deb
+sudo dpkg -i bottom_0.9.6_arm64.deb
# ARM
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.5/bottom_0.9.5_armhf.deb
-sudo dpkg -i bottom_0.9.5_armhf.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_armhf.deb
+sudo dpkg -i bottom_0.9.6_armhf.deb
```
### Snap
@@ -205,12 +205,12 @@ something like:
```bash
# x86-64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.5/bottom-0.9.5-1.x86_64.rpm
-sudo rpm -i bottom-0.9.5-1.x86_64.rpm
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom-0.9.6-1.x86_64.rpm
+sudo rpm -i bottom-0.9.6-1.x86_64.rpm
# Nightly x86-64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.5-1.x86_64.rpm
-sudo rpm -i bottom-0.9.5-1.x86_64.rpm
+curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.6-1.x86_64.rpm
+sudo rpm -i bottom-0.9.6-1.x86_64.rpm
```
### Gentoo
@@ -306,8 +306,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.5.tar.gz
-tar -xzvf 0.9.5.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/archive/0.9.6.tar.gz
+tar -xzvf 0.9.6.tar.gz
cargo install --path . --locked
# Option 2 - Clone from master and install manually