diff --git a/CHANGELOG b/CHANGELOG index 3f4aa4b..fcde217 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Changes in v0.10.2: + * fix: cannot actually unset an environment variable becuase toml lacks support of `null` + * fix: #33 "reboot-in-reboot" + Changes in v0.10.1: * feature: added support of SELinux * BREAKING: renamed `system.\[un\]load_extension` to `system.\[un\]register_extension` diff --git a/SECURITY.md b/SECURITY.md index 3e28092..03b5d2a 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,8 +2,8 @@ ## Supported Versions The `HEAD` and the latest release are supported by the Airup developers. The maintained versions are: - - Mainline: `0.10.1` - - Stable: `0.9.4` + - Mainline: `0.10.2` + - Stable: `0.10.2` ## Reporting a Vulnerability Please [contact @sisungo](mailto:sisungo@icloud.com) to report a vulnerability. diff --git a/airup-sdk/Cargo.toml b/airup-sdk/Cargo.toml index eb11786..02f0b1f 100644 --- a/airup-sdk/Cargo.toml +++ b/airup-sdk/Cargo.toml @@ -4,7 +4,7 @@ authors = ["sisungo "] description = "SDK library of Airup" documentation = "https://docs.rs/airup-sdk" repository = "https://github.com/sisungo/airup" -version = "0.10.1" +version = "0.10.2" edition = "2021" license = "MIT" diff --git a/airup/Cargo.toml b/airup/Cargo.toml index 26238ec..dbd6bf1 100644 --- a/airup/Cargo.toml +++ b/airup/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "airup" authors = ["sisungo "] -version = "0.10.1" +version = "0.10.2" edition = "2021" license = "MIT" publish = false diff --git a/airupd/Cargo.toml b/airupd/Cargo.toml index 8bbe12b..0168cc2 100644 --- a/airupd/Cargo.toml +++ b/airupd/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "airupd" authors = ["sisungo "] -version = "0.10.1" +version = "0.10.2" edition = "2021" license = "MIT" publish = false diff --git a/extensions/fallback-logger/Cargo.toml b/extensions/fallback-logger/Cargo.toml index 687c398..ac20b5c 100644 --- a/extensions/fallback-logger/Cargo.toml +++ b/extensions/fallback-logger/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fallback-logger" authors = ["sisungo "] -version = "0.10.0" +version = "0.10.2" edition = "2021" license = "MIT" publish = false