uptick: 0.6.4 (#576)

This commit is contained in:
Clement Tsang 2021-09-12 14:02:11 -04:00 committed by GitHub
parent aabbc4fd95
commit c7626057c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 8 deletions

View File

@ -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/), 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). 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 ## Changes

2
Cargo.lock generated
View File

@ -231,7 +231,7 @@ dependencies = [
[[package]] [[package]]
name = "bottom" name = "bottom"
version = "0.6.3" version = "0.6.4"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cmd", "assert_cmd",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "bottom" name = "bottom"
version = "0.6.3" version = "0.6.4"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"] authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
edition = "2018" edition = "2018"
repository = "https://github.com/ClementTsang/bottom" repository = "https://github.com/ClementTsang/bottom"

View File

@ -97,8 +97,8 @@ sudo pacman -Syu bottom
A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest): A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest):
```bash ```bash
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.3/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.3_amd64.deb sudo dpkg -i bottom_0.6.4_amd64.deb
``` ```
### Fedora/CentOS ### Fedora/CentOS
@ -173,7 +173,7 @@ Since validation of the package takes time, it may take a while to become availa
choco install bottom choco install bottom
# The version number may be required for newer releases during the approval process: # 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 ### winget
@ -200,8 +200,8 @@ to do so using the most recent version of stable Rust, which is how the binaries
rustup update stable rustup update stable
# Option 1 - Download from releases and install # Option 1 - Download from releases and install
curl -LO https://github.com/ClementTsang/bottom/archive/0.6.3.tar.gz curl -LO https://github.com/ClementTsang/bottom/archive/0.6.4.tar.gz
tar -xzvf 0.6.3.tar.gz tar -xzvf 0.6.4.tar.gz
cargo install --path . cargo install --path .
# Option 2 - Clone from master and install manually # Option 2 - Clone from master and install manually