diff --git a/Cargo.lock b/Cargo.lock index 8d9a689..d803108 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -281,7 +281,7 @@ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f" [[package]] name = "libudx" -version = "1.0.0" +version = "1.0.1" dependencies = [ "rand", "serde_json", @@ -379,7 +379,7 @@ dependencies = [ [[package]] name = "peeroxide" -version = "1.0.0" +version = "1.0.1" dependencies = [ "hex", "libudx", @@ -394,7 +394,7 @@ dependencies = [ [[package]] name = "peeroxide-dht" -version = "1.0.0" +version = "1.0.1" dependencies = [ "blake2", "chacha20", diff --git a/libudx/CHANGELOG.md b/libudx/CHANGELOG.md new file mode 100644 index 0000000..11bddf3 --- /dev/null +++ b/libudx/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +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). + +## [Unreleased] diff --git a/libudx/Cargo.toml b/libudx/Cargo.toml index 938f7ee..2768dbc 100644 --- a/libudx/Cargo.toml +++ b/libudx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libudx" -version = "1.0.0" +version = "1.0.1" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/peeroxide-dht/CHANGELOG.md b/peeroxide-dht/CHANGELOG.md new file mode 100644 index 0000000..42c4525 --- /dev/null +++ b/peeroxide-dht/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [1.0.1](https://github.com/Rightbracket/peeroxide/compare/peeroxide-dht-v1.0.0...peeroxide-dht-v1.0.1) - 2026-04-26 + +### Other + +- Add doc comments to all public API items and enforce deny(missing_docs) ([#2](https://github.com/Rightbracket/peeroxide/pull/2)) diff --git a/peeroxide-dht/Cargo.toml b/peeroxide-dht/Cargo.toml index ec56022..5b4de86 100644 --- a/peeroxide-dht/Cargo.toml +++ b/peeroxide-dht/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peeroxide-dht" -version = "1.0.0" +version = "1.0.1" 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.0.0" } +libudx = { path = "../libudx", version = "1.0.1" } tokio = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } diff --git a/peeroxide/CHANGELOG.md b/peeroxide/CHANGELOG.md new file mode 100644 index 0000000..46d100c --- /dev/null +++ b/peeroxide/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [1.0.1](https://github.com/Rightbracket/peeroxide/compare/peeroxide-v1.0.0...peeroxide-v1.0.1) - 2026-04-26 + +### Other + +- Add doc comments to all public API items and enforce deny(missing_docs) ([#2](https://github.com/Rightbracket/peeroxide/pull/2)) diff --git a/peeroxide/Cargo.toml b/peeroxide/Cargo.toml index 992771d..477434d 100644 --- a/peeroxide/Cargo.toml +++ b/peeroxide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peeroxide" -version = "1.0.0" +version = "1.0.1" 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.0.0" } -libudx = { path = "../libudx", version = "1.0.0" } +peeroxide-dht = { path = "../peeroxide-dht", version = "1.0.1" } +libudx = { path = "../libudx", version = "1.0.1" } tokio = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true }