From 40c4287bc9a95461889e10612519960a16a2874f Mon Sep 17 00:00:00 2001 From: Max Inden Date: Tue, 13 Apr 2021 23:37:05 +0200 Subject: [PATCH] *: Prepare libp2p-swarm-derive v0.23.0 and libp2p v0.37.1 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- swarm-derive/CHANGELOG.md | 7 +++++++ swarm-derive/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdfbbc3a6ee..81c74f28186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,11 @@ # `libp2p` facade crate +## Version 0.37.1 [2021-04-14] + +- Update individual crates. + - `libp2p-swarm-derive` + ## Version 0.37.0 [2021-04-13] - Update individual crates. diff --git a/Cargo.toml b/Cargo.toml index d48c7f73f21..2928d5a0c61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.37.0" +version = "0.37.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -77,7 +77,7 @@ libp2p-pnet = { version = "0.20.0", path = "transports/pnet", optional = true } libp2p-relay = { version = "0.2.0", path = "protocols/relay", optional = true } libp2p-request-response = { version = "0.11.0", path = "protocols/request-response", optional = true } libp2p-swarm = { version = "0.29.0", path = "swarm" } -libp2p-swarm-derive = { version = "0.22.0", path = "swarm-derive" } +libp2p-swarm-derive = { version = "0.23.0", path = "swarm-derive" } libp2p-uds = { version = "0.28.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.28.1", path = "transports/wasm-ext", default-features = false, optional = true } libp2p-yamux = { version = "0.32.0", path = "muxers/yamux", optional = true } diff --git a/swarm-derive/CHANGELOG.md b/swarm-derive/CHANGELOG.md index 36cd7a4a582..52031b8837c 100644 --- a/swarm-derive/CHANGELOG.md +++ b/swarm-derive/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.23.0 [2021-04-14] + +- Extend `NetworkBehaviour` callbacks, more concretely introducing new `fn + inject_new_listener` and `fn inject_expired_external_addr` and have `fn + inject_{new,expired}_listen_addr` provide a `ListenerId` [PR + 2011](https://github.com/libp2p/rust-libp2p/pull/2011). + # 0.22.0 [2021-02-15] - Rename the crate to `libp2p-swarm-derive`. diff --git a/swarm-derive/Cargo.toml b/swarm-derive/Cargo.toml index f20cae161dd..cea480ec5b1 100644 --- a/swarm-derive/Cargo.toml +++ b/swarm-derive/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-swarm-derive" edition = "2018" description = "Procedural macros of libp2p-core" -version = "0.22.0" +version = "0.23.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"