From 3d13a547a9899c1d821f4d982b1f7543f0432645 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Wed, 27 Oct 2021 18:11:47 +0100 Subject: [PATCH] *: Prepare v0.40.0-rc.3 release candidate --- CHANGELOG.md | 6 ++++++ Cargo.toml | 8 ++++---- core/CHANGELOG.md | 2 +- core/Cargo.toml | 4 ++-- protocols/identify/CHANGELOG.md | 2 +- protocols/identify/Cargo.toml | 6 +++--- swarm/CHANGELOG.md | 2 +- swarm/Cargo.toml | 4 ++-- 8 files changed, 20 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db0ca108d3b..47ad9b610c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,12 @@ # `libp2p` facade crate +## Version 0.40.0-rc.3 [2021-10-27] + +- Update individual crates. + - `libp2p-core` + - `libp2p-identify` + - `libp2p-swarm` ## Version 0.40.0-rc.2 [2021-10-15] diff --git a/Cargo.toml b/Cargo.toml index 4ab8a15dc8f..fe41add1d34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.40.0-rc.2" +version = "0.40.0-rc.3" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -68,10 +68,10 @@ atomic = "0.5.0" bytes = "1" futures = "0.3.1" lazy_static = "1.2" -libp2p-core = { version = "0.30.0-rc.1", path = "core", default-features = false } +libp2p-core = { version = "0.30.0-rc.2", path = "core", default-features = false } libp2p-floodsub = { version = "0.31.0-rc.1", path = "protocols/floodsub", optional = true } libp2p-gossipsub = { version = "0.33.0-rc.1", path = "./protocols/gossipsub", optional = true } -libp2p-identify = { version = "0.31.0-rc.1", path = "protocols/identify", optional = true } +libp2p-identify = { version = "0.31.0-rc.2", path = "protocols/identify", optional = true } libp2p-kad = { version = "0.32.0-rc.2", path = "protocols/kad", optional = true } libp2p-metrics = { version = "0.1.0-rc.1", path = "misc/metrics", optional = true } libp2p-mplex = { version = "0.30.0-rc.1", path = "muxers/mplex", optional = true } @@ -82,7 +82,7 @@ libp2p-pnet = { version = "0.22.0-rc.1", path = "transports/pnet", optional = tr libp2p-relay = { version = "0.4.0-rc.1", path = "protocols/relay", optional = true } libp2p-rendezvous = { version = "0.1.0-rc.1", path = "protocols/rendezvous", optional = true } libp2p-request-response = { version = "0.13.0-rc.1", path = "protocols/request-response", optional = true } -libp2p-swarm = { version = "0.31.0-rc.1", path = "swarm" } +libp2p-swarm = { version = "0.31.0-rc.2", path = "swarm" } libp2p-swarm-derive = { version = "0.25.0-rc.1", path = "swarm-derive" } libp2p-uds = { version = "0.30.0-rc.1", path = "transports/uds", optional = true } libp2p-wasm-ext = { version = "0.30.0-rc.1", path = "transports/wasm-ext", default-features = false, optional = true } diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index cbe0d188e97..18d24729efd 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.30.0-rc.1 [2021-10-15] +# 0.30.0-rc.2 [2021-10-27] - Add `ConnectionLimit::with_max_established` (see [PR 2137]). diff --git a/core/Cargo.toml b/core/Cargo.toml index 18a0a90b17e..f3669b6238a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-core" edition = "2018" description = "Core traits and structs of libp2p" -version = "0.30.0-rc.1" +version = "0.30.0-rc.2" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -47,7 +47,7 @@ libp2p-noise = { path = "../transports/noise" } libp2p-tcp = { path = "../transports/tcp" } multihash = { version = "0.14", default-features = false, features = ["arb"] } quickcheck = "0.9.0" -rand07 = { package = "rand", version = "0.7" } +rand07 = { package = "rand", version = "0.7" } wasm-timer = "0.2" [build-dependencies] diff --git a/protocols/identify/CHANGELOG.md b/protocols/identify/CHANGELOG.md index 51e0a0b7b7d..a7d53d55dee 100644 --- a/protocols/identify/CHANGELOG.md +++ b/protocols/identify/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.31.0-rc.1 [2021-10-15] +# 0.31.0-rc.2 [2021-10-27] - Make default features of `libp2p-core` optional. [PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181) diff --git a/protocols/identify/Cargo.toml b/protocols/identify/Cargo.toml index 7afcb590078..2ee71c0cabc 100644 --- a/protocols/identify/Cargo.toml +++ b/protocols/identify/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-identify" edition = "2018" description = "Nodes identifcation protocol for libp2p" -version = "0.31.0-rc.1" +version = "0.31.0-rc.2" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -11,8 +11,8 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.30.0-rc.1", path = "../../core", default-features = false } -libp2p-swarm = { version = "0.31.0-rc.1", path = "../../swarm" } +libp2p-core = { version = "0.30.0-rc.2", path = "../../core", default-features = false } +libp2p-swarm = { version = "0.31.0-rc.2", path = "../../swarm" } log = "0.4.1" lru = "0.6" prost = "0.9" diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index bf67f53d91c..65e6b0672ad 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.31.0-rc.1 [2021-10-15] +# 0.31.0-rc.2 [2021-10-27] - Make default features of `libp2p-core` optional. [PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181) diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index 1e4dc7f396f..1044602831c 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-swarm" edition = "2018" description = "The libp2p swarm" -version = "0.31.0-rc.1" +version = "0.31.0-rc.2" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] either = "1.6.0" futures = "0.3.1" -libp2p-core = { version = "0.30.0-rc.1", path = "../core", default-features = false } +libp2p-core = { version = "0.30.0-rc.2", path = "../core", default-features = false } log = "0.4" rand = "0.7" smallvec = "1.6.1"