From 802d00e645894d8895f2f9f665b921452d992b86 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Thu, 9 Jun 2022 15:26:56 +0200 Subject: [PATCH] *: Prepare v0.45.1 (#2700) --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 12 ++++++------ protocols/dcutr/CHANGELOG.md | 2 +- protocols/identify/CHANGELOG.md | 2 +- protocols/kad/CHANGELOG.md | 2 +- protocols/relay/CHANGELOG.md | 2 +- swarm/CHANGELOG.md | 2 +- 7 files changed, 20 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27eb2bf1bba..cc41ea630c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,15 @@ # `libp2p` facade crate +# 0.45.1 + +- Update individual crates. + - Update to [`libp2p-dcutr` `v0.3.1`](protocols/dcutr/CHANGELOG.md). + - Update to [`libp2p-identify` `v0.36.1`](protocols/identify/CHANGELOG.md). + - Update to [`libp2p-kad` `v0.37.1`](protocols/kad/CHANGELOG.md). + - Update to [`libp2p-relay` `v0.9.1`](protocols/relay/CHANGELOG.md). + - Update to [`libp2p-swarm` `v0.36.1`](swarm/CHANGELOG.md). + # 0.45.0 - Update individual crates. diff --git a/Cargo.toml b/Cargo.toml index 9f3fe5f495e..9115ab4a817 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p" edition = "2021" rust-version = "1.56.1" description = "Peer-to-peer networking library" -version = "0.45.0" +version = "0.45.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -78,20 +78,20 @@ lazy_static = "1.2" libp2p-autonat = { version = "0.4.0", path = "protocols/autonat", optional = true } libp2p-core = { version = "0.33.0", path = "core", default-features = false } -libp2p-dcutr = { version = "0.3.0", path = "protocols/dcutr", optional = true } +libp2p-dcutr = { version = "0.3.1", path = "protocols/dcutr", optional = true } libp2p-floodsub = { version = "0.36.0", path = "protocols/floodsub", optional = true } -libp2p-identify = { version = "0.36.0", path = "protocols/identify", optional = true } -libp2p-kad = { version = "0.37.0", path = "protocols/kad", optional = true } +libp2p-identify = { version = "0.36.1", path = "protocols/identify", optional = true } +libp2p-kad = { version = "0.37.1", path = "protocols/kad", optional = true } libp2p-metrics = { version = "0.6.0", path = "misc/metrics", optional = true } libp2p-mplex = { version = "0.33.0", path = "muxers/mplex", optional = true } libp2p-noise = { version = "0.36.0", path = "transports/noise", optional = true } libp2p-ping = { version = "0.36.0", path = "protocols/ping", optional = true } libp2p-plaintext = { version = "0.33.0", path = "transports/plaintext", optional = true } libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true } -libp2p-relay = { version = "0.9.0", path = "protocols/relay", optional = true } +libp2p-relay = { version = "0.9.1", path = "protocols/relay", optional = true } libp2p-rendezvous = { version = "0.6.0", path = "protocols/rendezvous", optional = true } libp2p-request-response = { version = "0.18.0", path = "protocols/request-response", optional = true } -libp2p-swarm = { version = "0.36.0", path = "swarm" } +libp2p-swarm = { version = "0.36.1", path = "swarm" } libp2p-swarm-derive = { version = "0.27.0", path = "swarm-derive" } libp2p-uds = { version = "0.32.0", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.33.0", path = "transports/wasm-ext", default-features = false, optional = true } diff --git a/protocols/dcutr/CHANGELOG.md b/protocols/dcutr/CHANGELOG.md index bded75920f8..00ad37e1ca2 100644 --- a/protocols/dcutr/CHANGELOG.md +++ b/protocols/dcutr/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.3.1 - unreleased +# 0.3.1 - Upgrade at most one inbound connect request. diff --git a/protocols/identify/CHANGELOG.md b/protocols/identify/CHANGELOG.md index b9766f1f6ae..85e29abcc9c 100644 --- a/protocols/identify/CHANGELOG.md +++ b/protocols/identify/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.36.1 - unreleased +# 0.36.1 - Allow at most one inbound identify push stream. diff --git a/protocols/kad/CHANGELOG.md b/protocols/kad/CHANGELOG.md index 77e1cd31be3..2dc4a605fcc 100644 --- a/protocols/kad/CHANGELOG.md +++ b/protocols/kad/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.37.1 - unreleased +# 0.37.1 - Limit # of inbound streams to 32. [See PR 2699]. diff --git a/protocols/relay/CHANGELOG.md b/protocols/relay/CHANGELOG.md index 4fdaaaf958a..46d3b2ffcee 100644 --- a/protocols/relay/CHANGELOG.md +++ b/protocols/relay/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.9.1 - unreleased +# 0.9.1 - Respond to at most one incoming reservation request. Deny <= 8 incoming circuit requests with one per peer. And deny new circuits before accepting new diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index 6dcfdb7be92..71d0ea3e4d2 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.36.1 - unreleased +# 0.36.1 - Limit negotiating inbound substreams per connection. See [PR 2697].