Skip to content

Commit 8777143

Browse files
authored
uptick: 0.9.0 (#1143)
* uptick: 0.9.0 * years are hard * update changelog
1 parent efe65ec commit 8777143

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ body:
5858
description: >
5959
Please provide which version of `bottom` you're running, which you can find with `btm -V`. If you are using
6060
a nightly/non-release version, please also specify that.
61-
placeholder: 0.8.0
61+
placeholder: 0.9.0
6262

6363
- type: input
6464
id: install

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.9.0] - Unreleased
8+
## [0.9.0] - 2023-05-10
99

1010
## Bug Fixes
1111

@@ -29,8 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929

3030
- [#1025](https://github.com/ClementTsang/bottom/pull/1025): Officially support M1 macOS.
3131
- [#1035](https://github.com/ClementTsang/bottom/pull/1035): Migrate away from heim for CPU information.
32-
- [#1036](https://github.com/ClementTsang/bottom/pull/1036): Migrate away from heim for memory information; Linux
33-
platforms will also now try to use `MemAvailable` to determine used memory if supported.
32+
- [#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.
3433
- [#1041](https://github.com/ClementTsang/bottom/pull/1041): Migrate away from heim for network information.
3534
- [#1064](https://github.com/ClementTsang/bottom/pull/1064): Migrate away from heim for storage information.
3635
- [#812](https://github.com/ClementTsang/bottom/issues/812): Fully remove heim from bottom.

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
162162

163163
```bash
164164
# x86-64
165-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_amd64.deb
166-
sudo dpkg -i bottom_0.8.0_amd64.deb
165+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_amd64.deb
166+
sudo dpkg -i bottom_0.9.0_amd64.deb
167167

168168
# ARM64
169-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_arm64.deb
170-
sudo dpkg -i bottom_0.8.0_arm64.deb
169+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_arm64.deb
170+
sudo dpkg -i bottom_0.9.0_arm64.deb
171171

172172
# ARM
173-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_armhf.deb
174-
sudo dpkg -i bottom_0.8.0_armhf.deb
173+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.0/bottom_0.9.0_armhf.deb
174+
sudo dpkg -i bottom_0.9.0_armhf.deb
175175
```
176176

177177
### Snap
@@ -251,7 +251,7 @@ choco install bottom
251251

252252
# The version number may need to be specified for newer releases for the first
253253
# few hours/days during the approval process:
254-
choco install bottom --version=0.8.0
254+
choco install bottom --version=0.9.0
255255
```
256256

257257
### winget
@@ -282,8 +282,8 @@ to do so using the most recent version of stable Rust, which is how the binaries
282282
rustup update stable
283283

284284
# Option 1 - Download from releases and install
285-
curl -LO https://github.com/ClementTsang/bottom/archive/0.8.0.tar.gz
286-
tar -xzvf 0.8.0.tar.gz
285+
curl -LO https://github.com/ClementTsang/bottom/archive/0.9.0.tar.gz
286+
tar -xzvf 0.9.0.tar.gz
287287
cargo install --path .
288288

289289
# Option 2 - Clone from master and install manually

0 commit comments

Comments
 (0)