From c072cd29d46258abaa0f54d92033e9b1c4d1b79e Mon Sep 17 00:00:00 2001 From: Roman Borschel Date: Wed, 17 Feb 2021 10:57:07 +0100 Subject: [PATCH] Update to yamux-0.8.1 (#1959) --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- muxers/yamux/CHANGELOG.md | 4 ++++ muxers/yamux/Cargo.toml | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ded5012871f..df4deae2f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,10 @@ # `libp2p` facade crate +## Version 0.35.1 [unreleased] + +- Update `libp2p-yamux` to latest patch version. + ## Version 0.35.0 [2021-02-15] - Use `libp2p-swarm-derive`, the former `libp2p-core-derive`. diff --git a/Cargo.toml b/Cargo.toml index b1716c3bd2b..9ad17c8430f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.35.0" +version = "0.35.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -76,7 +76,7 @@ libp2p-swarm = { version = "0.27.2", path = "swarm" } libp2p-swarm-derive = { version = "0.22.0", path = "swarm-derive" } libp2p-uds = { version = "0.27.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.27.0", path = "transports/wasm-ext", optional = true } -libp2p-yamux = { version = "0.30.0", path = "muxers/yamux", optional = true } +libp2p-yamux = { version = "0.30.1", path = "muxers/yamux", optional = true } multiaddr = { package = "parity-multiaddr", version = "0.11.1", path = "misc/multiaddr" } parking_lot = "0.11.0" pin-project = "1.0.0" diff --git a/muxers/yamux/CHANGELOG.md b/muxers/yamux/CHANGELOG.md index 6935e853fd0..e80ee8b6297 100644 --- a/muxers/yamux/CHANGELOG.md +++ b/muxers/yamux/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.30.1 [unreleased] + +- Update `yamux` to `0.8.1`. + # 0.30.0 [2021-01-12] - Update dependencies. diff --git a/muxers/yamux/Cargo.toml b/muxers/yamux/Cargo.toml index d3f70583cf7..df47e5939f3 100644 --- a/muxers/yamux/Cargo.toml +++ b/muxers/yamux/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-yamux" edition = "2018" description = "Yamux multiplexing protocol for libp2p" -version = "0.30.0" +version = "0.30.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -14,4 +14,4 @@ futures = "0.3.1" libp2p-core = { version = "0.27.0", path = "../../core" } parking_lot = "0.11" thiserror = "1.0" -yamux = "0.8.0" +yamux = "0.8.1"