diff --git a/CHANGELOG.md b/CHANGELOG.md index cf4e1d46..2e16e9f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ # Version 0.35.0 [unreleased] -- Update `libp2p-gossipsub`. +- Update `libp2p-gossipsub` and `libp2p-request-response`. # Version 0.34.0 [2021-01-12] diff --git a/Cargo.toml b/Cargo.toml index f6512840..430a9345 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ libp2p-noise = { version = "0.29.0", path = "protocols/noise", optional = true } libp2p-ping = { version = "0.27.0", path = "protocols/ping", optional = true } libp2p-plaintext = { version = "0.27.0", path = "protocols/plaintext", optional = true } libp2p-pnet = { version = "0.20.0", path = "protocols/pnet", optional = true } -libp2p-request-response = { version = "0.9.0", path = "protocols/request-response", optional = true } +libp2p-request-response = { version = "0.9.1", path = "protocols/request-response", optional = true } libp2p-swarm = { version = "0.27.0", path = "swarm" } libp2p-uds = { version = "0.27.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.27.0", path = "transports/wasm-ext", optional = true } diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index 5ac7e85c..306d7073 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,3 +1,5 @@ +# 0.9.1 [unreleased] + # 0.9.0 [2021-01-12] - Update dependencies. diff --git a/protocols/request-response/Cargo.toml b/protocols/request-response/Cargo.toml index 0595c39b..58604e8e 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.9.0" +version = "0.9.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"