summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-01-31 13:40:50 -0800
committerGitHub <noreply@github.com>2022-01-31 16:40:50 -0500
commitd7dc710ddbefad5ebea15cfe926a59ac689dc085 (patch)
treea843c4f3ad854aec6962fbec857c3009fc55db95
parent61c8bfd5748997a22626b05b0f2d8e202aa1c0b0 (diff)
uptick: 0.6.7 (#667)0.6.7
Uptick to 0.6.7, with appropriate updates to the README and changelog.
-rw-r--r--CHANGELOG.md14
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md10
4 files changed, 19 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 575cb397..15ab5f26 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,12 +5,22 @@ 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.6.7]/[0.7.0] - Unreleased
+## [0.6.8] / [0.7.0] - Unreleased
-## Feature
+## [0.6.7] - 2022-01-31
+
+## Bug Fixes
+
+- [#655](https://github.com/ClementTsang/bottom/pull/665): Fix bug where the program would stall in an infinite loop if the width of the terminal was too small.
+
+## Features
- [#646](https://github.com/ClementTsang/bottom/pull/646): Add `PgUp`/`PgDown` keybind support to scroll up and down a page in a table.
+## Internal Changes
+
+- [#658](https://github.com/ClementTsang/bottom/pull/658): Update sysinfo.
+
## [0.6.6] - 2021-12-22
## Bug Fixes
diff --git a/Cargo.lock b/Cargo.lock
index 02838794..4f3b2460 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -230,7 +230,7 @@ dependencies = [
[[package]]
name = "bottom"
-version = "0.6.6"
+version = "0.6.7"
dependencies = [
"anyhow",
"assert_cmd",
diff --git a/Cargo.toml b/Cargo.toml
index 9d56e94e..c2015441 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bottom"
-version = "0.6.6"
+version = "0.6.7"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
diff --git a/README.md b/README.md
index a6db2261..03d11d9a 100644
--- a/README.md
+++ b/README.md
@@ -103,8 +103,8 @@ sudo pacman -Syu bottom
A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest):
```bash
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.6/bottom_0.6.6_amd64.deb
-sudo dpkg -i bottom_0.6.6_amd64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.7/bottom_0.6.7_amd64.deb
+sudo dpkg -i bottom_0.6.7_amd64.deb
```
### Fedora/CentOS
@@ -175,7 +175,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.6.6
+choco install bottom --version=0.6.7
```
### winget
@@ -205,8 +205,8 @@ to do so using the most recent version of stable Rust, which is how the binaries
rustup update stable
# Option 1 - Download from releases and install
-curl -LO https://github.com/ClementTsang/bottom/archive/0.6.6.tar.gz
-tar -xzvf 0.6.6.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/archive/0.6.7.tar.gz
+tar -xzvf 0.6.7.tar.gz
cargo install --path .
# Option 2 - Clone from master and install manually