Skip to content

Commit

Permalink
release: airup v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sisungo committed Mar 26, 2024
1 parent 64e9072 commit 5ed73e2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Changes in v0.9.3:
* feature: cli: customize how many log records are fetched
* fix: potential OOM attack

Changes in v0.9.2:
* feature: support of redirecting `stdin`
* feature: allow re-creating the ipc socket after misdeleting by using signal SIGHUP
Expand Down
2 changes: 1 addition & 1 deletion airup-eventsourced/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "airup-eventsourced"
authors = ["sisungo <sisungo@icloud.com>"]
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "MIT"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion airup-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["sisungo <sisungo@icloud.com>"]
description = "SDK library of Airup"
documentation = "https://docs.rs/airup-sdk"
repository = "https://github.com/sisungo/airup"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "MIT"

Expand Down
2 changes: 1 addition & 1 deletion airup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "airup"
authors = ["sisungo <sisungo@icloud.com>"]
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "MIT"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion airupd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "airupd"
authors = ["sisungo <sisungo@icloud.com>"]
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "MIT"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion airupd/src/milestones/reboot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fn stop_service_task(service: String) -> JoinHandle<()> {
match airupd().stop_service(&service).await {
Ok(x) => {
if let Err(err) = x.wait().await {
if !matches!(err, Error::NotStarted) {
if !matches!(err, Error::NotStarted | Error::Unsupported { message: _ }) {
error = Some(err);
}
} else {
Expand Down
1 change: 0 additions & 1 deletion docs/resources/airupd.airs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ kind = "oneshot"

[exec]
start = "noop"
stop = "noop"
reload = "& airup self-reload"

0 comments on commit 5ed73e2

Please sign in to comment.