diff --git a/CHANGELOG.md b/CHANGELOG.md index b5f511eb..f5cbde49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.11.1 + +- Avoid race condition between pending frames and closing stream. + See [PR 156]. + +[PR 156]: https://github.com/libp2p/rust-yamux/pull/156 + # 0.11.0 - Remove `Connection::control` in favor of `Control::new`. diff --git a/yamux/Cargo.toml b/yamux/Cargo.toml index b7eeec40..ebb28cd6 100644 --- a/yamux/Cargo.toml +++ b/yamux/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yamux" -version = "0.11.0" +version = "0.11.1" authors = ["Parity Technologies "] license = "Apache-2.0 OR MIT" description = "Multiplexer over reliable, ordered connections"