Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions libudx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion libudx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 14 additions & 0 deletions peeroxide-dht/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
4 changes: 2 additions & 2 deletions peeroxide-dht/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }
Expand Down
14 changes: 14 additions & 0 deletions peeroxide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
6 changes: 3 additions & 3 deletions peeroxide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }
Expand Down