summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-08-05 17:51:24 -0400
committerGitHub <noreply@github.com>2023-08-05 17:51:24 -0400
commit07b7caa5fa4080f91af8a448f28456fb95f36722 (patch)
tree6e9ebd47f89648d532c8680c7e4acd9f3494364d /README.md
parent7aae9293e46680d70d46d1321bda7af5d85bbd89 (diff)
uptick: 0.9.4 (#1270)0.9.4
* uptick: 0.9.4 * update date
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 d2fb8391..8264fd5b 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.3/bottom_0.9.3_amd64.deb
-sudo dpkg -i bottom_0.9.3_amd64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.4/bottom_0.9.4_amd64.deb
+sudo dpkg -i bottom_0.9.4_amd64.deb
# ARM64
-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
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.4/bottom_0.9.4_arm64.deb
+sudo dpkg -i bottom_0.9.4_arm64.deb
# ARM
-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
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.4/bottom_0.9.4_armhf.deb
+sudo dpkg -i bottom_0.9.4_armhf.deb
```
### Snap
@@ -202,12 +202,12 @@ 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
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.4/bottom-0.9.4-1.x86_64.rpm
+sudo rpm -i bottom-0.9.4-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
+curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.4-1.x86_64.rpm
+sudo rpm -i bottom-0.9.4-1.x86_64.rpm
```
### Gentoo
@@ -303,8 +303,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.3.tar.gz
-tar -xzvf 0.9.3.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/archive/0.9.4.tar.gz
+tar -xzvf 0.9.4.tar.gz
cargo install --path . --locked
# Option 2 - Clone from master and install manually