swarm-derive: Update to v0.24.0 (#2136)

This commit is contained in:
Max Inden
2021-07-12 22:20:34 +02:00
committed by GitHub
parent b5c6fa6281
commit b814231251
4 changed files with 14 additions and 3 deletions

View File

@ -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.

View File

@ -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 <admin@parity.io>"]
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 }

View File

@ -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

View File

@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"