diff --git a/CHANGELOG b/CHANGELOG index 73afa37..c83d657 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +Changes in v0.10.6: + * BREAKING: Extensions now uses the registering connection, rather than listen to a new UNIX socket and let the daemon connect. + * BREAKING: Service sideloading is now a part of the supervisor cache system. + * BREAKING: Removed API `debug.disconnect` + * Feature: Seperated instance name from system host name + Changes in v0.10.5: * cli: refactor `debug` subcommand and removed unnecessary interfaces * rpc: reset request size limit \(2M to 128K\) diff --git a/SECURITY.md b/SECURITY.md index 1e261ae..7b4fc4b 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.5` - - Stable: `0.10.5` + - Mainline: `0.10.6` + - Stable: `0.10.6` ## 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 30a5a4d..83bfa71 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.5" +version = "0.10.6" edition = "2021" license = "MIT" diff --git a/airup/Cargo.toml b/airup/Cargo.toml index 5021335..5279f94 100644 --- a/airup/Cargo.toml +++ b/airup/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "airup" authors = ["sisungo "] -version = "0.10.5" +version = "0.10.6" edition = "2021" license = "MIT" publish = false diff --git a/airupd/Cargo.toml b/airupd/Cargo.toml index 580c087..4b10658 100644 --- a/airupd/Cargo.toml +++ b/airupd/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "airupd" authors = ["sisungo "] -version = "0.10.5" +version = "0.10.6" edition = "2021" license = "MIT" publish = false diff --git a/airupfx/airupfx-extensions/Cargo.toml b/airupfx/airupfx-extensions/Cargo.toml index b2baa3f..a3db6c9 100644 --- a/airupfx/airupfx-extensions/Cargo.toml +++ b/airupfx/airupfx-extensions/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "airupfx-extensions" authors = ["sisungo "] -version = "0.10.4" +version = "0.10.6" edition = "2021" license = "MIT" publish = false