Skip to content

Commit 2f102bc

Browse files
authored
uptick: 0.10.1 (#1527)
1 parent 5b68b6e commit 2f102bc

File tree

6 files changed

+22
-16
lines changed

6 files changed

+22
-16
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ body:
7979
8080
It would also be helpful if you are not running [the latest version](https://github.com/ClementTsang/bottom/releases/latest)
8181
to try that as well to see if the issue has already been resolved.
82-
placeholder: 0.10.0
82+
placeholder: 0.10.1
8383

8484
- type: textarea
8585
id: install

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.10.1] - 2024-08-01
9+
10+
### Bug Fixes
11+
12+
- [#1526](https://github.com/ClementTsang/bottom/pull/1526): Fix `--help` description being incorrectly set for a flag.
13+
814
## [0.10.0] - 2024-08-01
915

1016
### Features

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bottom"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Clement Tsang <[email protected]>"]
55
edition = "2021"
66
repository = "https://github.com/ClementTsang/bottom"

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -175,16 +175,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
175175

176176
```bash
177177
# x86-64
178-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom_0.10.0_amd64.deb
179-
sudo dpkg -i bottom_0.10.0_amd64.deb
178+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom_0.10.1_amd64.deb
179+
sudo dpkg -i bottom_0.10.1_amd64.deb
180180

181181
# ARM64
182-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom_0.10.0_arm64.deb
183-
sudo dpkg -i bottom_0.10.0_arm64.deb
182+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom_0.10.1_arm64.deb
183+
sudo dpkg -i bottom_0.10.1_arm64.deb
184184

185185
# ARM
186-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom_0.10.0_armhf.deb
187-
sudo dpkg -i bottom_0.10.0_armhf.deb
186+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom_0.10.1_armhf.deb
187+
sudo dpkg -i bottom_0.10.1_armhf.deb
188188
```
189189

190190
### Exherbo Linux
@@ -210,12 +210,12 @@ something like:
210210

211211
```bash
212212
# x86-64
213-
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.0/bottom-0.10.0-1.x86_64.rpm
214-
sudo rpm -i bottom-0.10.0-1.x86_64.rpm
213+
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.1/bottom-0.10.1-1.x86_64.rpm
214+
sudo rpm -i bottom-0.10.1-1.x86_64.rpm
215215

216216
# Nightly x86-64
217-
curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.10.0-1.x86_64.rpm
218-
sudo rpm -i bottom-0.10.0-1.x86_64.rpm
217+
curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.10.1-1.x86_64.rpm
218+
sudo rpm -i bottom-0.10.1-1.x86_64.rpm
219219
```
220220

221221
### Gentoo
@@ -326,8 +326,8 @@ to do so using the most recent version of stable Rust, which is how the binaries
326326
rustup update stable
327327

328328
# Option 1 - Download from releases and install
329-
curl -LO https://github.com/ClementTsang/bottom/archive/0.10.0.tar.gz
330-
tar -xzvf 0.10.0.tar.gz
329+
curl -LO https://github.com/ClementTsang/bottom/archive/0.10.1.tar.gz
330+
tar -xzvf 0.10.1.tar.gz
331331
cargo install --path . --locked
332332

333333
# Option 2 - Clone the repo and install manually

desktop/bottom.desktop

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Desktop Entry]
22
Name=bottom
3-
Version=0.10.0
3+
Version=0.10.1
44
GenericName=System Monitor
55
Comment=A customizable cross-platform graphical process/system monitor for the terminal.
66
Exec=btm

0 commit comments

Comments
 (0)