mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-10 06:34:16 +00:00
uptick: 0.9.0 (#1143)
* uptick: 0.9.0 * years are hard * update changelog
This commit is contained in:
parent
efe65ecbe2
commit
8777143801
3 changed files with 12 additions and 13 deletions
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -58,7 +58,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 also specify that.
|
||||
placeholder: 0.8.0
|
||||
placeholder: 0.9.0
|
||||
|
||||
- type: input
|
||||
id: install
|
||||
|
|
|
@ -5,7 +5,7 @@ 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.9.0] - Unreleased
|
||||
## [0.9.0] - 2023-05-10
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
|
@ -29,8 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- [#1025](https://github.com/ClementTsang/bottom/pull/1025): Officially support M1 macOS.
|
||||
- [#1035](https://github.com/ClementTsang/bottom/pull/1035): Migrate away from heim for CPU information.
|
||||
- [#1036](https://github.com/ClementTsang/bottom/pull/1036): Migrate away from heim for memory information; Linux
|
||||
platforms will also now try to use `MemAvailable` to determine used memory if supported.
|
||||
- [#1036](https://github.com/ClementTsang/bottom/pull/1036): Migrate away from heim for memory information; bottom will now try to use `MemAvailable` on Linux to determine used memory.
|
||||
- [#1041](https://github.com/ClementTsang/bottom/pull/1041): Migrate away from heim for network information.
|
||||
- [#1064](https://github.com/ClementTsang/bottom/pull/1064): Migrate away from heim for storage information.
|
||||
- [#812](https://github.com/ClementTsang/bottom/issues/812): Fully remove heim from bottom.
|
||||
|
|
18
README.md
18
README.md
|
@ -162,16 +162,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
|
|||
|
||||
```bash
|
||||
# x86-64
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_amd64.deb
|
||||
sudo dpkg -i bottom_0.8.0_amd64.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_amd64.deb
|
||||
sudo dpkg -i bottom_0.9.0_amd64.deb
|
||||
|
||||
# ARM64
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_arm64.deb
|
||||
sudo dpkg -i bottom_0.8.0_arm64.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_arm64.deb
|
||||
sudo dpkg -i bottom_0.9.0_arm64.deb
|
||||
|
||||
# ARM
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_armhf.deb
|
||||
sudo dpkg -i bottom_0.8.0_armhf.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_armhf.deb
|
||||
sudo dpkg -i bottom_0.9.0_armhf.deb
|
||||
```
|
||||
|
||||
### Snap
|
||||
|
@ -251,7 +251,7 @@ choco install bottom
|
|||
|
||||
# The version number may need to be specified for newer releases for the first
|
||||
# few hours/days during the approval process:
|
||||
choco install bottom --version=0.8.0
|
||||
choco install bottom --version=0.9.0
|
||||
```
|
||||
|
||||
### winget
|
||||
|
@ -282,8 +282,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.8.0.tar.gz
|
||||
tar -xzvf 0.8.0.tar.gz
|
||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.9.0.tar.gz
|
||||
tar -xzvf 0.9.0.tar.gz
|
||||
cargo install --path .
|
||||
|
||||
# Option 2 - Clone from master and install manually
|
||||
|
|
Loading…
Reference in a new issue