diff --git a/Cargo.lock b/Cargo.lock index a834588..7db8b4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -770,7 +770,7 @@ dependencies = [ [[package]] name = "libudx" -version = "1.7.2" +version = "1.7.3" dependencies = [ "rand", "serde_json", @@ -923,7 +923,7 @@ dependencies = [ [[package]] name = "peeroxide" -version = "1.7.2" +version = "1.7.3" dependencies = [ "hex", "libudx", @@ -938,7 +938,7 @@ dependencies = [ [[package]] name = "peeroxide-cli" -version = "0.3.0" +version = "0.3.1" dependencies = [ "arc-swap", "assert_cmd", @@ -976,7 +976,7 @@ dependencies = [ [[package]] name = "peeroxide-dht" -version = "1.7.2" +version = "1.7.3" dependencies = [ "blake2", "chacha20", diff --git a/libudx/CHANGELOG.md b/libudx/CHANGELOG.md index 7665125..38a660c 100644 --- a/libudx/CHANGELOG.md +++ b/libudx/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.3](https://github.com/Rightbracket/peeroxide/compare/libudx-v1.7.2...libudx-v1.7.3) - 2026-07-12 + +### Other + +- full documentation audit (rustdoc + mdBook) ([#28](https://github.com/Rightbracket/peeroxide/pull/28)) + ## [1.7.2](https://github.com/Rightbracket/peeroxide/compare/libudx-v1.3.1...libudx-v1.7.2) - 2026-07-12 ### Other diff --git a/libudx/Cargo.toml b/libudx/Cargo.toml index 5bd8ae1..76771d2 100644 --- a/libudx/Cargo.toml +++ b/libudx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libudx" -version = "1.7.2" +version = "1.7.3" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/peeroxide-cli/CHANGELOG.md b/peeroxide-cli/CHANGELOG.md index 0ea9acb..5dd61ec 100644 --- a/peeroxide-cli/CHANGELOG.md +++ b/peeroxide-cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/Rightbracket/peeroxide/compare/peeroxide-cli-v0.3.0...peeroxide-cli-v0.3.1) - 2026-07-12 + +### Other + +- full documentation audit (rustdoc + mdBook) ([#28](https://github.com/Rightbracket/peeroxide/pull/28)) + ### Fixed - `--idle-session-timeout`/`--relay-idle-session-timeout` help text incorrectly claimed idle-session sweeping was "not yet enforced" — stale since idle-session-timeout enforcement shipped in `peeroxide-dht` 1.7.0. Corrected the help text to describe actual current behavior. diff --git a/peeroxide-cli/Cargo.toml b/peeroxide-cli/Cargo.toml index 7c58d85..6d8e1ed 100644 --- a/peeroxide-cli/Cargo.toml +++ b/peeroxide-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peeroxide-cli" -version = "0.3.0" +version = "0.3.1" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -19,9 +19,9 @@ name = "peeroxide" path = "src/main.rs" [dependencies] -peeroxide = { path = "../peeroxide", version = "1.7.2" } -peeroxide-dht = { path = "../peeroxide-dht", version = "1.7.2" } -libudx = { path = "../libudx", version = "1.7.2" } +peeroxide = { path = "../peeroxide", version = "1.7.3" } +peeroxide-dht = { path = "../peeroxide-dht", version = "1.7.3" } +libudx = { path = "../libudx", version = "1.7.3" } clap = { version = "4", features = ["derive"] } clap_mangen = "0.2" tokio = { version = "1", features = ["full", "signal"] } diff --git a/peeroxide-dht/CHANGELOG.md b/peeroxide-dht/CHANGELOG.md index 4bac701..4acf541 100644 --- a/peeroxide-dht/CHANGELOG.md +++ b/peeroxide-dht/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.3](https://github.com/Rightbracket/peeroxide/compare/peeroxide-dht-v1.7.2...peeroxide-dht-v1.7.3) - 2026-07-12 + +### Other + +- full documentation audit (rustdoc + mdBook) ([#28](https://github.com/Rightbracket/peeroxide/pull/28)) + ## [1.7.2](https://github.com/Rightbracket/peeroxide/compare/peeroxide-dht-v1.3.1...peeroxide-dht-v1.7.2) - 2026-07-12 ### Added diff --git a/peeroxide-dht/Cargo.toml b/peeroxide-dht/Cargo.toml index 0d20bc0..a0a96b3 100644 --- a/peeroxide-dht/Cargo.toml +++ b/peeroxide-dht/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peeroxide-dht" -version = "1.7.2" +version = "1.7.3" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -15,7 +15,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -libudx = { path = "../libudx", version = "1.7.2" } +libudx = { path = "../libudx", version = "1.7.3" } tokio = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } diff --git a/peeroxide/CHANGELOG.md b/peeroxide/CHANGELOG.md index e01d71b..5127c16 100644 --- a/peeroxide/CHANGELOG.md +++ b/peeroxide/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.3](https://github.com/Rightbracket/peeroxide/compare/peeroxide-v1.7.2...peeroxide-v1.7.3) - 2026-07-12 + +### Other + +- full documentation audit (rustdoc + mdBook) ([#28](https://github.com/Rightbracket/peeroxide/pull/28)) + ## [1.7.2](https://github.com/Rightbracket/peeroxide/compare/peeroxide-v1.3.1...peeroxide-v1.7.2) - 2026-07-12 ### Other diff --git a/peeroxide/Cargo.toml b/peeroxide/Cargo.toml index 6ae2474..563aa1f 100644 --- a/peeroxide/Cargo.toml +++ b/peeroxide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peeroxide" -version = "1.7.2" +version = "1.7.3" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -15,8 +15,8 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -peeroxide-dht = { path = "../peeroxide-dht", version = "1.7.2" } -libudx = { path = "../libudx", version = "1.7.2" } +peeroxide-dht = { path = "../peeroxide-dht", version = "1.7.3" } +libudx = { path = "../libudx", version = "1.7.3" } tokio = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true }