diff --git a/CHANGELOG.md b/CHANGELOG.md index e650d91cb31..2efcc2bb94d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,10 @@ # `libp2p` facade crate +# 0.46.1 + +- Update to `libp2p-derive` [`v0.28.0`](swarm-derive/CHANGELOG.md#0280). + # 0.46.0 - Semver bump Rust from `1.56.1` to `1.60.0` . See [PR 2646]. diff --git a/Cargo.toml b/Cargo.toml index e458dbbd122..9d11b6c3b57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p" edition = "2021" rust-version = "1.60.0" description = "Peer-to-peer networking library" -version = "0.46.0" +version = "0.46.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -93,7 +93,7 @@ libp2p-relay = { version = "0.10.0", path = "protocols/relay", optional = true } libp2p-rendezvous = { version = "0.7.0", path = "protocols/rendezvous", optional = true } libp2p-request-response = { version = "0.19.0", path = "protocols/request-response", optional = true } libp2p-swarm = { version = "0.37.0", path = "swarm" } -libp2p-swarm-derive = { version = "0.27.0", path = "swarm-derive" } +libp2p-swarm-derive = { version = "0.28.0", path = "swarm-derive" } libp2p-uds = { version = "0.33.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.34.0", path = "transports/wasm-ext", default-features = false, optional = true } libp2p-yamux = { version = "0.38.0", path = "muxers/yamux", optional = true } diff --git a/swarm-derive/CHANGELOG.md b/swarm-derive/CHANGELOG.md index ad84b1291d9..4d467c5e76a 100644 --- a/swarm-derive/CHANGELOG.md +++ b/swarm-derive/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.28.0 + +- Import `ListenerId` from `libp2p::core::transport`. See [PR 2652]. + +[PR 2652]: https://github.com/libp2p/rust-libp2p/pull/2652 + # 0.27.2 - Replace references of Protocol Handler with Connection Handler. See [PR 2640]. diff --git a/swarm-derive/Cargo.toml b/swarm-derive/Cargo.toml index 5f87974193c..97a205674d9 100644 --- a/swarm-derive/Cargo.toml +++ b/swarm-derive/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-swarm-derive" edition = "2021" rust-version = "1.56.1" description = "Procedural macros of libp2p-core" -version = "0.27.2" +version = "0.28.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"