mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-22 12:13:06 +00:00
uptick: 0.6.5 (#628)
This commit is contained in:
parent
49fce58c27
commit
065ffdbc78
4 changed files with 18 additions and 8 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -5,7 +5,17 @@ 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.5]/[0.7.0] - Unreleased
|
||||
## [0.6.6]/[0.7.0] - Unreleased
|
||||
|
||||
## [0.6.5] - 2021-12-19
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
- [#627](https://github.com/ClementTsang/bottom/pull/627): Fixes `process_command` breaking process widget sorting.
|
||||
|
||||
## Internal Changes
|
||||
|
||||
- [#608](https://github.com/ClementTsang/bottom/pull/608): Add codecov integration to pipeline.
|
||||
|
||||
## [0.6.4] - 2021-09-12
|
||||
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -230,7 +230,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "bottom"
|
||||
version = "0.6.4"
|
||||
version = "0.6.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "bottom"
|
||||
version = "0.6.4"
|
||||
version = "0.6.5"
|
||||
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/ClementTsang/bottom"
|
||||
|
|
10
README.md
10
README.md
|
@ -98,8 +98,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.4/bottom_0.6.4_amd64.deb
|
||||
sudo dpkg -i bottom_0.6.4_amd64.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.5/bottom_0.6.5_amd64.deb
|
||||
sudo dpkg -i bottom_0.6.5_amd64.deb
|
||||
```
|
||||
|
||||
### Fedora/CentOS
|
||||
|
@ -170,7 +170,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.4
|
||||
choco install bottom --version=0.6.5
|
||||
```
|
||||
|
||||
### winget
|
||||
|
@ -197,8 +197,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.4.tar.gz
|
||||
tar -xzvf 0.6.4.tar.gz
|
||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.6.5.tar.gz
|
||||
tar -xzvf 0.6.5.tar.gz
|
||||
cargo install --path .
|
||||
|
||||
# Option 2 - Clone from master and install manually
|
||||
|
|
Loading…
Reference in a new issue