diff --git a/CHANGELOG.md b/CHANGELOG.md index 38ee55b3..485df8e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,11 @@ # `libp2p` facade crate +## Version 0.39.1 [2021-07-12] + +- Update individual crates. + - `libp2p-swarm-derive` + ## Version 0.39.0 [2021-07-12] - Update individual crates. diff --git a/Cargo.toml b/Cargo.toml index 3a7f17f1..51a1112c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.39.0" +version = "0.39.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -77,7 +77,7 @@ libp2p-pnet = { version = "0.21.0", path = "transports/pnet", optional = true } libp2p-relay = { version = "0.3.0", path = "protocols/relay", optional = true } libp2p-request-response = { version = "0.12.0", path = "protocols/request-response", optional = true } libp2p-swarm = { version = "0.30.0", path = "swarm" } -libp2p-swarm-derive = { version = "0.23.0", path = "swarm-derive" } +libp2p-swarm-derive = { version = "0.24.0", path = "swarm-derive" } libp2p-uds = { version = "0.29.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.29.0", path = "transports/wasm-ext", default-features = false, optional = true } libp2p-yamux = { version = "0.33.0", path = "muxers/yamux", optional = true } diff --git a/swarm-derive/CHANGELOG.md b/swarm-derive/CHANGELOG.md index 52031b88..94ea25f6 100644 --- a/swarm-derive/CHANGELOG.md +++ b/swarm-derive/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.24.0 [2021-07-12] + +- Handle `NetworkBehaviourAction::CloseConnection`. See [PR 2110] for details. + +[PR 2110]: https://github.com/libp2p/rust-libp2p/pull/2110/ + # 0.23.0 [2021-04-14] - Extend `NetworkBehaviour` callbacks, more concretely introducing new `fn diff --git a/swarm-derive/Cargo.toml b/swarm-derive/Cargo.toml index 9fa9080b..e63b7a71 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.23.0" +version = "0.24.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"