From d918e9a79dcaa02d1330ab32e5f4832ff27298bf Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 4 Jan 2021 18:51:05 +0100 Subject: [PATCH] *: Update changelogs and cargo tomls for new reqresp release --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- protocols/request-response/CHANGELOG.md | 5 +++++ protocols/request-response/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c31ffcbc..616d072b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,10 @@ - [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md) - [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md) +# Version 0.34.0 [unreleased] + +- Update `libp2p-request-response`. + # Version 0.33.0 [2020-12-17] - Update `libp2p-core` and all dependent crates. diff --git a/Cargo.toml b/Cargo.toml index e5cae716..45b16dfa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.33.0" +version = "0.34.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -72,7 +72,7 @@ libp2p-noise = { version = "0.28.0", path = "protocols/noise", optional = true } libp2p-ping = { version = "0.26.0", path = "protocols/ping", optional = true } libp2p-plaintext = { version = "0.26.0", path = "protocols/plaintext", optional = true } libp2p-pnet = { version = "0.20.0", path = "protocols/pnet", optional = true } -libp2p-request-response = { version = "0.8.0", path = "protocols/request-response", optional = true } +libp2p-request-response = { version = "0.9.0", path = "protocols/request-response", optional = true } libp2p-swarm = { version = "0.26.0", path = "swarm" } libp2p-uds = { version = "0.26.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.26.0", path = "transports/wasm-ext", optional = true } diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index 080d6dd5..07bccb1d 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.9.0 [unreleased] + +- Re-export `throttled`-specific response channel. [PR + 1902](https://github.com/libp2p/rust-libp2p/pull/1902). + # 0.8.0 [2020-12-17] - Update `libp2p-swarm` and `libp2p-core`. diff --git a/protocols/request-response/Cargo.toml b/protocols/request-response/Cargo.toml index 5b51cd8b..2723407a 100644 --- a/protocols/request-response/Cargo.toml +++ b/protocols/request-response/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-request-response" edition = "2018" description = "Generic Request/Response Protocols" -version = "0.8.0" +version = "0.9.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"