uptick: 0.6.3 (#549)

Uptick README and documentation to 0.6.3.
This commit is contained in:
Clement Tsang 2021-07-18 13:42:25 -04:00 committed by GitHub
parent 2736dc9b35
commit 812731ba00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 12 deletions

View File

@ -7,16 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.6.4]/[0.7.0] - Unreleased ## [0.6.4]/[0.7.0] - Unreleased
## [0.6.3] - Unreleased ## [0.6.3] - 2021-07-18
## Bug Fixes
- [#542](https://github.com/ClementTsang/bottom/pull/542): Fixes missing config options in the default generated config file.
- [#545](https://github.com/ClementTsang/bottom/pull/545): Fixes inaccurate memory usage/totals in macOS and Linux, switch unit to binary prefix.
## Changes ## Changes
- [#547](https://github.com/ClementTsang/bottom/pull/547): Switch memory usage calculation to match htop. - [#547](https://github.com/ClementTsang/bottom/pull/547): Switch Linux memory usage calculation to match htop.
## Bug Fixes
- [#536](https://github.com/ClementTsang/bottom/pull/536): Prevent tests from creating a config file.
- [#542](https://github.com/ClementTsang/bottom/pull/542): Fixes missing config options in the default generated config file.
- [#545](https://github.com/ClementTsang/bottom/pull/545): Fixes inaccurate memory usage/totals in macOS and Linux, switch unit to binary prefix.
## [0.6.2] - 2021-06-26 ## [0.6.2] - 2021-06-26

View File

@ -100,8 +100,8 @@ yay -S bottom-bin
A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest): A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest):
```bash ```bash
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.2/bottom_0.6.2_amd64.deb curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.3/bottom_0.6.3_amd64.deb
sudo dpkg -i bottom_0.6.2_amd64.deb sudo dpkg -i bottom_0.6.3_amd64.deb
``` ```
### Fedora/CentOS ### Fedora/CentOS
@ -176,7 +176,7 @@ Since validation of the package takes time, it may take a while to become availa
choco install bottom choco install bottom
# The version number may be required for newer releases during the approval process: # The version number may be required for newer releases during the approval process:
choco install bottom --version=0.6.2 choco install bottom --version=0.6.3
``` ```
### winget ### winget
@ -202,8 +202,8 @@ There are a few ways to go about doing this manually. Note that in all cases, yo
rustup update stable rustup update stable
# Download from releases and install # Download from releases and install
curl -LO https://github.com/ClementTsang/bottom/archive/0.6.2.tar.gz curl -LO https://github.com/ClementTsang/bottom/archive/0.6.3.tar.gz
tar -xzvf 0.6.2.tar.gz tar -xzvf 0.6.3.tar.gz
cargo install --path . cargo install --path .
# Clone from master and install manually # Clone from master and install manually