From 36840e5de9bccaa6c9f7d93d8fd4020e55e04d3b Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sun, 22 Jan 2023 00:53:36 -0500 Subject: [PATCH] uptick: 0.8.0 (#996) * uptick: 0.8.0 * update changelog --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- CHANGELOG.md | 7 ++++--- README.md | 16 ++++++++-------- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index af590166..06026133 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -74,7 +74,7 @@ body: description: > 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. - placeholder: 0.7.1 + placeholder: 0.8.0 - type: input id: install diff --git a/CHANGELOG.md b/CHANGELOG.md index 69a0ebdd..814bb74e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), 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 +- [#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. ## Features @@ -18,11 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Changes - [#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 -- [#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 diff --git a/README.md b/README.md index 51960055..f4a15a8e 100644 --- a/README.md +++ b/README.md @@ -158,16 +158,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.7.1/bottom_0.7.1_amd64.deb -sudo dpkg -i 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.8.0_amd64.deb # ARM64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_arm64.deb -sudo dpkg -i 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.8.0_arm64.deb # ARM -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_armhf.deb -sudo dpkg -i 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.8.0_armhf.deb ``` ### Snap @@ -247,7 +247,7 @@ choco install bottom # The version number may need to be specified for newer releases for the first # few hours/days during the approval process: -choco install bottom --version=0.7.1 +choco install bottom --version=0.8.0 ``` ### winget @@ -279,7 +279,7 @@ rustup update stable # Option 1 - Download from releases and install 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 . # Option 2 - Clone from master and install manually