Skip to content

Commit

Permalink
chore(release): prepare for v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Sep 17, 2022
1 parent f8ee397 commit 4c468cc
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.3.0] - 2022-09-17
### Features
- (tui) Support saving changed values ([#13](https://github.com/orhun/git-cliff/issues/13))
- Press <kbd>s</kbd> to set a parameter value and also save it to a file.
- See https://github.com/orhun/systeroid#saving-values
- (tui) Make help list selection functional
- Press <kbd>enter</kbd> on help menu to run the selected command.

### Miscellaneous Tasks
- Bump dependencies

## [0.2.2] - 2022-09-06
### Features
- Support listing parameters by subsection ([#44](https://github.com/orhun/systeroid/issues/44))
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man8/systeroid-tui.8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for systeroid-tui

.TH SYSTEROID-TUI "8" "2022-09-06" "systeroid-tui" "System Administration"
.TH SYSTEROID-TUI "8" "2022-09-17" "systeroid-tui" "System Administration"
.SH NAME
systeroid-tui \- manage kernel parameters with a terminal user interface

Expand Down
2 changes: 1 addition & 1 deletion man8/systeroid.8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for systeroid

.TH SYSTEROID "8" "2022-09-06" "systeroid" "System Administration"
.TH SYSTEROID "8" "2022-09-17" "systeroid" "System Administration"
.SH NAME
systeroid \- configure kernel parameters at runtime

Expand Down
2 changes: 1 addition & 1 deletion systeroid-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "systeroid-core"
version = "0.2.2" # managed by release.sh
version = "0.3.0" # managed by release.sh
description = "Core library of systeroid"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions systeroid-tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "systeroid-tui"
version = "0.2.2" # managed by release.sh
version = "0.3.0" # managed by release.sh
description = "A terminal user interface for managing kernel parameters"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand All @@ -26,7 +26,7 @@ copypasta-ext = { version = "0.3.7", optional = true }
colorsys = "0.6.6"

[dependencies.systeroid-core]
version = "0.2.2" # managed by release.sh
version = "0.3.0" # managed by release.sh
path = "../systeroid-core"

[dependencies.tui]
Expand Down
4 changes: 2 additions & 2 deletions systeroid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "systeroid"
version = "0.2.2" # managed by release.sh
version = "0.3.0" # managed by release.sh
description = "A more powerful alternative to sysctl"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand All @@ -21,7 +21,7 @@ live-tests = []
getopts = "0.2.21"

[dependencies.systeroid-core]
version = "0.2.2" # managed by release.sh
version = "0.3.0" # managed by release.sh
path = "../systeroid-core"

# metadata for cargo-binstall to get the right artifacts
Expand Down

0 comments on commit 4c468cc

Please sign in to comment.