uptick: 0.9.2 (#1202)
This commit is contained in:
parent
9560722318
commit
93b6a5649f
|
@ -58,7 +58,7 @@ body:
|
||||||
description: >
|
description: >
|
||||||
Please provide which version of `bottom` you're running, which you can find with `btm -V`. If you are using
|
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.
|
a nightly/non-release version, please also specify that.
|
||||||
placeholder: 0.9.1
|
placeholder: 0.9.2
|
||||||
|
|
||||||
- type: input
|
- type: input
|
||||||
id: install
|
id: install
|
||||||
|
|
|
@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [0.9.2] - Unreleased
|
## [0.9.2] - 2023-06-11
|
||||||
|
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
|
|
16
README.md
16
README.md
|
@ -163,16 +163,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# x86-64
|
# x86-64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.1/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.1_amd64.deb
|
sudo dpkg -i bottom_0.9.2_amd64.deb
|
||||||
|
|
||||||
# ARM64
|
# ARM64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.1/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.1_arm64.deb
|
sudo dpkg -i bottom_0.9.2_arm64.deb
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.1/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.1_armhf.deb
|
sudo dpkg -i bottom_0.9.2_armhf.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### Snap
|
### Snap
|
||||||
|
@ -291,8 +291,8 @@ to do so using the most recent version of stable Rust, which is how the binaries
|
||||||
rustup update stable
|
rustup update stable
|
||||||
|
|
||||||
# Option 1 - Download from releases and install
|
# Option 1 - Download from releases and install
|
||||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.9.1.tar.gz
|
curl -LO https://github.com/ClementTsang/bottom/archive/0.9.2.tar.gz
|
||||||
tar -xzvf 0.9.1.tar.gz
|
tar -xzvf 0.9.2.tar.gz
|
||||||
cargo install --path . --locked
|
cargo install --path . --locked
|
||||||
|
|
||||||
# Option 2 - Clone from master and install manually
|
# Option 2 - Clone from master and install manually
|
||||||
|
|
Loading…
Reference in New Issue