summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-06-11 22:22:42 +0000
committerGitHub <noreply@github.com>2023-06-11 18:22:42 -0400
commit93b6a5649fbeeaf7e2b00cba3313fa0e3683192a (patch)
tree998a5ef8a9fed280799a0b28c67692587293a8b9 /README.md
parent9560722318569c70945843f85535ddf6f368f953 (diff)
uptick: 0.9.2 (#1202)0.9.2
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 4758eafc..f8df8aa1 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.1/bottom_0.9.1_amd64.deb
-sudo dpkg -i bottom_0.9.1_amd64.deb
+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
# ARM64
-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
+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
# ARM
-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
+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
```
### Snap
@@ -291,8 +291,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.1.tar.gz
-tar -xzvf 0.9.1.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/archive/0.9.2.tar.gz
+tar -xzvf 0.9.2.tar.gz
cargo install --path . --locked
# Option 2 - Clone from master and install manually