Skip to content

Commit 855ae3b

Browse files
committed
chore(release): prepare for v0.4.5
1 parent 65d3d85 commit 855ae3b

File tree

7 files changed

+42
-10
lines changed

7 files changed

+42
-10
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.4.5] - 2024-12-11
6+
7+
### Refactor
8+
9+
- Refactor some controller code by @matthiasbeyer in [#146](https://github.com/orhun/systeroid/pull/146)
10+
- Simplify config path finding by @matthiasbeyer in [#145](https://github.com/orhun/systeroid/pull/145)
11+
- Improve the termion panic hook by @eld4niz in [#169](https://github.com/orhun/systeroid/pull/169)
12+
13+
### Documentation
14+
15+
- Mention how to set transparent background
16+
17+
### Styling
18+
19+
- Add scrollbar to parameter list
20+
21+
### Testing
22+
23+
- Use snapshot testing
24+
25+
### Miscellaneous Tasks
26+
27+
- Bump dependencies and Rust version
28+
29+
## New Contributors
30+
31+
- @znley made their first contribution in [#170](https://github.com/orhun/systeroid/pull/170)
32+
- @eld4niz made their first contribution in [#169](https://github.com/orhun/systeroid/pull/169)
33+
- @matthiasbeyer made their first contribution in [#146](https://github.com/orhun/systeroid/pull/146)
34+
35+
**Full Changelog**: https://github.com/orhun/systeroid/compare/v0.4.4...0.4.5
36+
537
## [0.4.4] - 2023-09-19
638

739
### Miscellaneous Tasks

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man8/systeroid-tui.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for systeroid-tui
22

3-
.TH SYSTEROID-TUI "8" "2023-09-19" "systeroid-tui" "System Administration"
3+
.TH SYSTEROID-TUI "8" "2024-12-11" "systeroid-tui" "System Administration"
44
.SH NAME
55
systeroid-tui \- manage kernel parameters with a terminal user interface
66

man8/systeroid.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for systeroid
22

3-
.TH SYSTEROID "8" "2023-09-19" "systeroid" "System Administration"
3+
.TH SYSTEROID "8" "2024-12-11" "systeroid" "System Administration"
44
.SH NAME
55
systeroid \- configure kernel parameters at runtime
66

systeroid-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "systeroid-core"
3-
version = "0.4.4" # managed by release.sh
3+
version = "0.4.5" # managed by release.sh
44
description = "Core library of systeroid"
55
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
66
license = "MIT OR Apache-2.0"

systeroid-tui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "systeroid-tui"
3-
version = "0.4.4" # managed by release.sh
3+
version = "0.4.5" # managed by release.sh
44
description = "A terminal user interface for managing kernel parameters"
55
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
66
license = "MIT OR Apache-2.0"
@@ -26,7 +26,7 @@ log.workspace = true
2626
thiserror.workspace = true
2727

2828
[dependencies.systeroid-core]
29-
version = "0.4.4" # managed by release.sh
29+
version = "0.4.5" # managed by release.sh
3030
path = "../systeroid-core"
3131

3232
[dependencies.ratatui]

systeroid/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "systeroid"
3-
version = "0.4.4" # managed by release.sh
3+
version = "0.4.5" # managed by release.sh
44
description = "A more powerful alternative to sysctl"
55
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
66
license = "MIT OR Apache-2.0"
@@ -24,7 +24,7 @@ env_logger = "0.11.5"
2424
getopts = "0.2.21"
2525

2626
[dependencies.systeroid-core]
27-
version = "0.4.4" # managed by release.sh
27+
version = "0.4.5" # managed by release.sh
2828
path = "../systeroid-core"
2929

3030
# metadata for cargo-binstall to get the right artifacts

0 commit comments

Comments
 (0)