Skip to content

Commit 426a20c

Browse files
Update yamux requirement from 0.8.0 to 0.9.0 (#1960)
* Update yamux requirement from 0.8.0 to 0.9.0 Updates the requirements on [yamux](https://github.com/paritytech/yamux) to permit the latest version. - [Release notes](https://github.com/paritytech/yamux/releases) - [Changelog](https://github.com/paritytech/yamux/blob/develop/CHANGELOG.md) - [Commits](https://github.com/paritytech/yamux/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <[email protected]>
1 parent 8ccb96a commit 426a20c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
- `libp2p-request-response`
5656
- `libp2p-swarm`
5757
- `libp2p-wasm-ext`
58+
- `libp2p-yamux`
5859

5960
- Drop support for `wasm32-unknown-unknown` in favor of
6061
`wasm32-unknown-emscripten` and `wasm32-wasi` [PR

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ libp2p-swarm = { version = "0.29.0", path = "swarm" }
8080
libp2p-swarm-derive = { version = "0.22.0", path = "swarm-derive" }
8181
libp2p-uds = { version = "0.28.0", path = "transports/uds", optional = true }
8282
libp2p-wasm-ext = { version = "0.28.1", path = "transports/wasm-ext", default-features = false, optional = true }
83-
libp2p-yamux = { version = "0.31.0", path = "muxers/yamux", optional = true }
83+
libp2p-yamux = { version = "0.32.0", path = "muxers/yamux", optional = true }
8484
multiaddr = { package = "parity-multiaddr", version = "0.11.2", path = "misc/multiaddr" }
8585
parking_lot = "0.11.0"
8686
pin-project = "1.0.0"

muxers/yamux/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.32.0 [unreleased]
2+
3+
- Update to `yamux` `v0.9.0` [PR
4+
1960](https://github.com/libp2p/rust-libp2p/pull/1960).
5+
16
# 0.31.0 [2021-03-17]
27

38
- Update `libp2p-core`.

muxers/yamux/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-yamux"
33
edition = "2018"
44
description = "Yamux multiplexing protocol for libp2p"
5-
version = "0.31.0"
5+
version = "0.32.0"
66
authors = ["Parity Technologies <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -14,4 +14,4 @@ futures = "0.3.1"
1414
libp2p-core = { version = "0.28.0", path = "../../core" }
1515
parking_lot = "0.11"
1616
thiserror = "1.0"
17-
yamux = "0.8.1"
17+
yamux = "0.9.0"

0 commit comments

Comments
 (0)