uptick: 0.7.0 (#940)
This commit is contained in:
parent
3b5774117f
commit
46884d48f0
|
@ -74,7 +74,7 @@ body:
|
|||
description: >
|
||||
Please provide which version of `bottom` you're running, which you can find with `btm -V`. If you are using
|
||||
a nightly/non-release version, please specify that and any related details (e.g. the commit hash/which nightly build).
|
||||
placeholder: 0.6.8
|
||||
placeholder: 0.7.0
|
||||
|
||||
- type: input
|
||||
id: install
|
||||
|
|
|
@ -5,12 +5,13 @@ 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.9] / [0.7.0] - Unreleased
|
||||
## [0.7.0] - 2022-12-31
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
- [#711](https://github.com/ClementTsang/bottom/pull/711): Fix building in Rust beta 1.61 due to `as_ref()` calls causing type inference issues.
|
||||
- [#717](https://github.com/ClementTsang/bottom/pull/717): Fix clicking on empty space in tables selecting the very last entry of a list in some cases.
|
||||
- [#720](https://github.com/ClementTsang/bottom/pull/720): Fix panic if battery feature was disabled during compilation.
|
||||
- [#805](https://github.com/ClementTsang/bottom/pull/805): Fix bottom keeping devices awake in certain scenarios.
|
||||
- [#825](https://github.com/ClementTsang/bottom/pull/825): Use alternative method of getting parent PID in some cases on macOS devices to avoid needing root access.
|
||||
- [#916](https://github.com/ClementTsang/bottom/pull/916): Fix possible gaps with widget layout spacing.
|
||||
|
@ -19,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## Changes
|
||||
|
||||
- [#690](https://github.com/ClementTsang/bottom/pull/690): Add some colour to `-h`/`--help` as part of updating to clap 3.0.
|
||||
- [#726](https://github.com/ClementTsang/bottom/pull/726): Add ARM musl binary build tasks.
|
||||
- [#807](https://github.com/ClementTsang/bottom/pull/807): Add more human friendly temperature sensor names for Linux.
|
||||
- [#845](https://github.com/ClementTsang/bottom/pull/845), [#922](https://github.com/ClementTsang/bottom/pull/922): Add macOS M1, FreeBSD 12, and FreeBSD 13 binary build tasks.
|
||||
- [#916](https://github.com/ClementTsang/bottom/pull/916), [#937](https://github.com/ClementTsang/bottom/pull/937): Improve CPU usage by optimizing draw logic of charts and tables.
|
||||
|
@ -32,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- [#784](https://github.com/ClementTsang/bottom/pull/784): Add ZFS ARC support.
|
||||
- [#794](https://github.com/ClementTsang/bottom/pull/794): Add GPU memory support for NVIDIA GPUs.
|
||||
- [#806](https://github.com/ClementTsang/bottom/pull/806): Update sysinfo to support M1 macOS temperature sensors.
|
||||
- [#836](https://github.com/ClementTsang/bottom/pull/836): Add CLI options for GPU memory.
|
||||
- [#841](https://github.com/ClementTsang/bottom/pull/841): Add page up/page down support for the help screen.
|
||||
- [#868](https://github.com/ClementTsang/bottom/pull/868): Make temperature widget sortable.
|
||||
- [#870](https://github.com/ClementTsang/bottom/pull/870): Make disk widget sortable.
|
||||
|
|
|
@ -204,7 +204,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "bottom"
|
||||
version = "0.6.9"
|
||||
version = "0.7.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "bottom"
|
||||
version = "0.6.9"
|
||||
version = "0.7.0"
|
||||
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/ClementTsang/bottom"
|
||||
|
|
10
README.md
10
README.md
|
@ -151,8 +151,8 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
|
|||
(note stable ARM builds only started with 0.6.8). You could install this way doing something like:
|
||||
|
||||
```bash
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.8/bottom_0.6.8_amd64.deb
|
||||
sudo dpkg -i bottom_0.6.8_amd64.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.0/bottom_0.7.0_amd64.deb
|
||||
sudo dpkg -i bottom_0.7.0_amd64.deb
|
||||
```
|
||||
|
||||
### Snap
|
||||
|
@ -232,7 +232,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.8
|
||||
choco install bottom --version=0.7.0
|
||||
```
|
||||
|
||||
### winget
|
||||
|
@ -261,8 +261,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.8.tar.gz
|
||||
tar -xzvf 0.6.8.tar.gz
|
||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.7.0.tar.gz
|
||||
tar -xzvf 0.7.0.tar.gz
|
||||
cargo install --path .
|
||||
|
||||
# Option 2 - Clone from master and install manually
|
||||
|
|
Loading…
Reference in New Issue