diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b655881..fb0d7052 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ 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.4]/[0.7.0] - Unreleased +## [0.6.5]/[0.7.0] - Unreleased + +## [0.6.4] - 2021-09-12 ## Changes diff --git a/Cargo.lock b/Cargo.lock index 43480929..38df74ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -231,7 +231,7 @@ dependencies = [ [[package]] name = "bottom" -version = "0.6.3" +version = "0.6.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 56f7e3fe..ecc72f9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bottom" -version = "0.6.3" +version = "0.6.4" authors = ["Clement Tsang "] edition = "2018" repository = "https://github.com/ClementTsang/bottom" diff --git a/README.md b/README.md index 7f61e937..8956ce64 100644 --- a/README.md +++ b/README.md @@ -97,8 +97,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.3/bottom_0.6.3_amd64.deb -sudo dpkg -i bottom_0.6.3_amd64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.4/bottom_0.6.4_amd64.deb +sudo dpkg -i bottom_0.6.4_amd64.deb ``` ### Fedora/CentOS @@ -173,7 +173,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.3 +choco install bottom --version=0.6.4 ``` ### winget @@ -200,8 +200,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.3.tar.gz -tar -xzvf 0.6.3.tar.gz +curl -LO https://github.com/ClementTsang/bottom/archive/0.6.4.tar.gz +tar -xzvf 0.6.4.tar.gz cargo install --path . # Option 2 - Clone from master and install manually