From 5486e89bbdfc55840e038845c2a07ec715199ee8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jan 2022 22:12:26 +0000 Subject: [PATCH 1/2] build(deps): update parking_lot requirement from 0.11 to 0.12 Updates the requirements on [parking_lot](https://github.com/Amanieu/parking_lot) to permit the latest version. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](https://github.com/Amanieu/parking_lot/compare/0.11.0...0.12.0) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4823e7a0..e173a1fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" futures = { version = "0.3.12", default-features = false, features = ["std"] } log = "0.4.8" nohash-hasher = "0.2" -parking_lot = "0.11" +parking_lot = "0.12" rand = "0.8.3" static_assertions = "1" From 2b1b76fa21fd4bc23a86e68d8b7473fd836edc98 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 31 Jan 2022 15:17:28 +0100 Subject: [PATCH 2/2] *: Bump version and add changelog entry --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07365354..f4c9339f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.10.1 [unreleased] + +- Update `parking_lot` dependency. See [PR 126]. + +[PR 126]: https://github.com/libp2p/rust-yamux/pull/126 + # 0.10.0 - Default to `WindowUpdateMode::OnRead`, thus enabling full Yamux flow-control, diff --git a/Cargo.toml b/Cargo.toml index e173a1fd..1b7c950c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yamux" -version = "0.10.0" +version = "0.10.1" authors = ["Parity Technologies "] license = "Apache-2.0 OR MIT" description = "Multiplexer over reliable, ordered connections"