From 0d04e0c492e64fa5d5ec1f92a5d3961618505f9b Mon Sep 17 00:00:00 2001 From: Friedel Ziegelmayer Date: Mon, 28 Feb 2022 10:27:58 +0100 Subject: [PATCH] swarm/src/behaviour: Remove Send bound from NetworkBehaviour (#2535) The bound is no longer needed across the libp2p-XXX crates. Co-authored-by: Max Inden --- CHANGELOG.md | 6 ++++++ Cargo.toml | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b4238d568f..cc89a31a0ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.3.0 [unreleased] + +- Update to `libp2p-swarm` `v0.35.0`. + +- Update to `libp2p-request-response` `v0.17.0`. + # 0.2.0 [2022-02-22] - Update to `libp2p-core` `v0.32.0`. diff --git a/Cargo.toml b/Cargo.toml index fd683b6bbdb..d08e186bfcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-autonat" edition = "2021" rust-version = "1.56.1" description = "NAT and firewall detection for libp2p" -version = "0.2.0" +version = "0.3.0" authors = ["David Craven ", "Elena Frank "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -19,8 +19,8 @@ futures = "0.3" futures-timer = "3.0" instant = "0.1" libp2p-core = { version = "0.32.0", path = "../../core", default-features = false } -libp2p-swarm = { version = "0.34.0", path = "../../swarm" } -libp2p-request-response = { version = "0.16.0", path = "../request-response" } +libp2p-swarm = { version = "0.35.0", path = "../../swarm" } +libp2p-request-response = { version = "0.17.0", path = "../request-response" } log = "0.4" rand = "0.8" prost = "0.9"