uptick: 0.8.0 (#996)

* uptick: 0.8.0

* update changelog
This commit is contained in:
Clement Tsang 2023-01-22 00:53:36 -05:00 committed by GitHub
parent 9a011189f1
commit 36840e5de9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 12 deletions

View File

@ -74,7 +74,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.7.1 placeholder: 0.8.0
- type: input - type: input
id: install id: install

View File

@ -5,10 +5,11 @@ 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.7.2]/[0.8.0] - ??? ## [0.8.0] - 2023-01-22
## Bug Fixes ## Bug Fixes
- [#950](https://github.com/ClementTsang/bottom/pull/950): Update help menu for disk and temperature widgets with sorting support.
- [#994](https://github.com/ClementTsang/bottom/pull/994): Fix time graph labels not being styled. - [#994](https://github.com/ClementTsang/bottom/pull/994): Fix time graph labels not being styled.
## Features ## Features
@ -18,11 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Changes ## Changes
- [#974](https://github.com/ClementTsang/bottom/pull/974): Hide battery duration section if the value is unknown. Also update shortened text. - [#974](https://github.com/ClementTsang/bottom/pull/974): Hide battery duration section if the value is unknown. Also update shortened text.
- [#975](https://github.com/ClementTsang/bottom/pull/975): Automatically hide the battery widget if no batteries are found. - [#975](https://github.com/ClementTsang/bottom/pull/975): Automatically hide the battery widget if no batteries are found but `--battery` is enabled.
## Other ## Other
- [#950](https://github.com/ClementTsang/bottom/pull/950): Update help menu for disk and temperature widgets with sorting support. - [#969](https://github.com/ClementTsang/bottom/pull/969): Follow Debian conventions for naming generated `.deb` binaries.
## [0.7.1] - 2023-01-06 ## [0.7.1] - 2023-01-06

View File

@ -158,16 +158,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.7.1/bottom_0.7.1_amd64.deb curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_amd64.deb
sudo dpkg -i bottom_0.7.1_amd64.deb sudo dpkg -i bottom_0.8.0_amd64.deb
# ARM64 # ARM64
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_arm64.deb curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_arm64.deb
sudo dpkg -i bottom_0.7.1_arm64.deb sudo dpkg -i bottom_0.8.0_arm64.deb
# ARM # ARM
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_armhf.deb curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_armhf.deb
sudo dpkg -i bottom_0.7.1_armhf.deb sudo dpkg -i bottom_0.8.0_armhf.deb
``` ```
### Snap ### Snap
@ -247,7 +247,7 @@ choco install bottom
# The version number may need to be specified for newer releases for the first # The version number may need to be specified for newer releases for the first
# few hours/days during the approval process: # few hours/days during the approval process:
choco install bottom --version=0.7.1 choco install bottom --version=0.8.0
``` ```
### winget ### winget
@ -279,7 +279,7 @@ 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.7.0.tar.gz curl -LO https://github.com/ClementTsang/bottom/archive/0.7.0.tar.gz
tar -xzvf 0.7.1.tar.gz tar -xzvf 0.8.0.tar.gz
cargo install --path . cargo install --path .
# Option 2 - Clone from master and install manually # Option 2 - Clone from master and install manually