diff --git a/Cargo.lock b/Cargo.lock index 65a3f27bbdf..68be9fd0790 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3876,7 +3876,7 @@ dependencies = [ [[package]] name = "multistream-select" -version = "0.13.0" +version = "0.13.1" dependencies = [ "async-std", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 92562489ed5..72f93c8ec10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -118,7 +118,7 @@ libp2p-webtransport-websys = { version = "0.4.0", path = "transports/webtranspor libp2p-yamux = { version = "0.46.0", path = "muxers/yamux" } multiaddr = "0.18.1" multihash = "0.19.1" -multistream-select = { version = "0.13.0", path = "misc/multistream-select" } +multistream-select = { version = "0.13.1", path = "misc/multistream-select" } prometheus-client = "0.22.2" quick-protobuf-codec = { version = "0.3.1", path = "misc/quick-protobuf-codec" } quickcheck = { package = "quickcheck-ext", path = "misc/quickcheck-ext" } diff --git a/misc/multistream-select/CHANGELOG.md b/misc/multistream-select/CHANGELOG.md index b34eff7b06f..47a6a67fba0 100644 --- a/misc/multistream-select/CHANGELOG.md +++ b/misc/multistream-select/CHANGELOG.md @@ -1,4 +1,7 @@ -## 0.13.0 +## 0.13.1 + + +## 0.13.0 - Don't wait for negotiation on `::poll_close`. This can save one round-trip for protocols that use stream closing as an operation in ones protocol, e.g. using stream closing to signal the end of a request. diff --git a/misc/multistream-select/Cargo.toml b/misc/multistream-select/Cargo.toml index 1bbe3642477..f7fcb78f27d 100644 --- a/misc/multistream-select/Cargo.toml +++ b/misc/multistream-select/Cargo.toml @@ -3,7 +3,7 @@ name = "multistream-select" edition = "2021" rust-version = { workspace = true } description = "Multistream-select negotiation protocol for libp2p" -version = "0.13.0" +version = "0.13.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"