summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-01-05 23:30:05 -0500
committerGitHub <noreply@github.com>2023-01-05 23:30:05 -0500
commit7794c0e43a4c0cd7701d0b05bf4eb6abf0e72601 (patch)
treed159c25b26cb39c31eb6837b416244bff2aa1ebf
parentd3661c23200a66c7dc01f4e534d8d7e97dc188d2 (diff)
uptick: 0.7.1 (#959)
* uptick: 0.7.1 * update changelog
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml2
-rw-r--r--CHANGELOG.md17
-rw-r--r--README.md8
3 files changed, 17 insertions, 10 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index ce08e67f..ef237c73 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.0
+ placeholder: 0.7.1
- type: input
id: install
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c0004d9c..c6305587 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,18 +5,25 @@ 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.1] - ???
+## [0.7.2]/[0.8.0] - ???
## Bug Fixes
-- [#952](https://github.com/ClementTsang/bottom/pull/952): Partially fix battery text getting cut off in small windows.
-- [#953](https://github.com/ClementTsang/bottom/pull/953): Fix CPU widget's 'all' label being missing on small sizes.
+## Features
+
+- [#950](https://github.com/ClementTsang/bottom/pull/950): Split usage into both usage percentage and usage value.
## Changes
-## Features
+## Other
-- [#950](https://github.com/ClementTsang/bottom/pull/950): Split usage into usage percentage and value.
+## [0.7.1] - 2023-01-06
+
+## Bug Fixes
+
+- [#950](https://github.com/ClementTsang/bottom/pull/950): Fixes invalid sorting order for disk usage percentage.
+- [#952](https://github.com/ClementTsang/bottom/pull/952), [#960](https://github.com/ClementTsang/bottom/pull/960): Partially fix battery text getting cut off in small windows.
+- [#953](https://github.com/ClementTsang/bottom/pull/953): Fix CPU widget's 'all' label being missing on small sizes.
## Other
diff --git a/README.md b/README.md
index e618d67f..57b383a5 100644
--- a/README.md
+++ b/README.md
@@ -153,8 +153,8 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
(note stable ARM builds are only available for 0.6.8 and later). If you want to install this way, do something like:
```bash
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.0/bottom_0.7.0_amd64.deb
-sudo dpkg -i bottom_0.7.0_amd64.deb
+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
```
### Snap
@@ -234,7 +234,7 @@ Since validation of the package takes time, it may take a while to become availa
choco install bottom
# The version number may be required for newer releases during the approval process:
-choco install bottom --version=0.7.0
+choco install bottom --version=0.7.1
```
### winget
@@ -264,7 +264,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.0.tar.gz
+tar -xzvf 0.7.1.tar.gz
cargo install --path .
# Option 2 - Clone from master and install manually