summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-05-05 17:56:01 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-05-05 17:56:01 -0400
commit453c10e7c580fd964cf0fcc2c37afe6ed9a62175 (patch)
tree37abbe42ee6e8b4d0237dc96dec8e34f7ee96f58
parentaea79a0750efd5181a4e12e229598c56d4e99ed8 (diff)
docs: update README and CHANGELOG for 0.4.1
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.lock2
-rw-r--r--README.md12
3 files changed, 13 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dbd6d4bc..f9508f9b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#114](https://github.com/ClementTsang/bottom/pull/114): Process state per process (originally in 0.4.0, moved to later).
+## [0.4.1] - 2020-05-05
+
+### Bug Fixes
+
+- [#146](https://github.com/ClementTsang/bottom/pull/146): Fixed a typo in the help menu (credit to [HarHarLinks](https://github.com/HarHarLinks)).
+
## [0.4.0] - 2020-05-04
### Features
diff --git a/Cargo.lock b/Cargo.lock
index c96690da..8c489dd6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -116,7 +116,7 @@ dependencies = [
[[package]]
name = "bottom"
-version = "0.4.0"
+version = "0.4.1"
dependencies = [
"assert_cmd 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"backtrace 0.3.46 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/README.md b/README.md
index 148d8660..05aa6beb 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ A cross-platform graphical process/system monitor with a customizable interface
![Quick demo recording showing off searching, expanding, and process killing.](assets/summary_and_search.gif) _Theme based on [gruvbox](https://github.com/morhetz/gruvbox) (see [sample config](./sample_configs/demo_config.toml))._ Recorded on version 0.4.0.
-**Note**: This documentation is relevant to version 0.4.0 and may refer to in-development or unreleased features, especially if you are reading this on the master branch. Please refer to [release branch](https://github.com/ClementTsang/bottom/tree/release/README.md) or [crates.io](https://crates.io/crates/bottom) for the most up-to-date _release_ documentation.
+**Note**: This documentation is relevant to version 0.4.1 and may refer to in-development or unreleased features, especially if you are reading this on the master branch. Please refer to [release branch](https://github.com/ClementTsang/bottom/tree/release/README.md) or [crates.io](https://crates.io/crates/bottom) for the most up-to-date _release_ documentation.
## Table of Contents
@@ -71,7 +71,7 @@ cd bottom
cargo install --path .
# Download from releases and install
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.0/bottom_source_code.tar.gz
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.1/bottom_source_code.tar.gz
tar -xzvf bottom_source_code.tar.gz
cargo install --path .
```
@@ -96,8 +96,8 @@ yay bottom-bin
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.4.0/bottom_0.4.0_amd64.deb
-sudo dpkg -i bottom_0.4.0_amd64.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.1/bottom_0.4.1_amd64.deb
+sudo dpkg -i bottom_0.4.1_amd64.deb
```
### Homebrew
@@ -123,8 +123,8 @@ Choco package located [here](https://chocolatey.org/packages/bottom).
```bash
choco install bottom
-# Version number may be required for newer releases:
-choco install bottom --version=0.4.0
+# Version number may be required for newer releases, if available:
+choco install bottom --version=0.4.1
```
## Usage