Skip to content

Commit

Permalink
*: Prepare v0.40.0-rc.3 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Oct 27, 2021
1 parent 6e76435 commit 43fa6fd
Show file tree
Hide file tree
Showing 27 changed files with 46 additions and 41 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -42,6 +42,11 @@

# `libp2p` facade crate

## Version 0.40.0-rc.3 [2021-10-27]

- Update individual crates.
- `libp2p-core`
- `libp2p-swarm`

## Version 0.40.0-rc.2 [2021-10-15]

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down Expand Up @@ -68,7 +68,7 @@ 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 }
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion 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]).

Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Expand Up @@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions misc/metrics/Cargo.toml
Expand Up @@ -15,11 +15,11 @@ kad = ["libp2p-kad"]
ping = ["libp2p-ping"]

[dependencies]
libp2p-core= { version = "0.30.0-rc.1", path = "../../core" }
libp2p-core= { version = "0.30.0-rc.2", path = "../../core" }
libp2p-identify = { version = "0.31.0-rc.1", path = "../../protocols/identify", optional = true }
libp2p-kad = { version = "0.32.0-rc.1", path = "../../protocols/kad", optional = true }
libp2p-ping = { version = "0.31.0-rc.1", path = "../../protocols/ping", optional = true }
libp2p-swarm = { version = "0.31.0-rc.1", path = "../../swarm" }
libp2p-swarm = { version = "0.31.0-rc.2", path = "../../swarm" }
open-metrics-client = "0.12.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion muxers/mplex/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
bytes = "1"
futures = "0.3.1"
asynchronous-codec = "0.6"
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"
nohash-hasher = "0.2"
parking_lot = "0.11"
Expand Down
2 changes: 1 addition & 1 deletion muxers/yamux/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
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 }
parking_lot = "0.11"
thiserror = "1.0"
yamux = "0.9.0"
4 changes: 2 additions & 2 deletions protocols/floodsub/Cargo.toml
Expand Up @@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"]
cuckoofilter = "0.5.0"
fnv = "1.0"
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"
prost = "0.9"
rand = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions protocols/gossipsub/Cargo.toml
Expand Up @@ -10,8 +10,8 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]

[dependencies]
libp2p-swarm = { version = "0.31.0-rc.1", path = "../../swarm" }
libp2p-core = { version = "0.30.0-rc.1", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0-rc.2", path = "../../swarm" }
libp2p-core = { version = "0.30.0-rc.2", path = "../../core", default-features = false }
bytes = "1.0"
byteorder = "1.3.4"
fnv = "1.0.7"
Expand Down
2 changes: 1 addition & 1 deletion 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)
Expand Down
6 changes: 3 additions & 3 deletions protocols/identify/Cargo.toml
Expand Up @@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions protocols/kad/Cargo.toml
Expand Up @@ -17,8 +17,8 @@ fnv = "1.0"
asynchronous-codec = "0.6"
futures = "0.3.1"
log = "0.4"
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" }
prost = "0.9"
rand = "0.7.2"
sha2 = "0.9.1"
Expand Down
4 changes: 2 additions & 2 deletions protocols/mdns/Cargo.toml
Expand Up @@ -16,8 +16,8 @@ dns-parser = "0.8.0"
futures = "0.3.13"
if-watch = "0.2.0"
lazy_static = "1.4.0"
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.14"
rand = "0.8.3"
smallvec = "1.6.1"
Expand Down
4 changes: 2 additions & 2 deletions protocols/ping/Cargo.toml
Expand Up @@ -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"
rand = "0.7.2"
void = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions protocols/relay/Cargo.toml
Expand Up @@ -14,8 +14,8 @@ asynchronous-codec = "0.6"
bytes = "1"
futures = "0.3.1"
futures-timer = "3"
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"
pin-project = "1"
prost = "0.9"
Expand Down
4 changes: 2 additions & 2 deletions protocols/rendezvous/Cargo.toml
Expand Up @@ -11,8 +11,8 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
asynchronous-codec = "0.6"
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" }
prost = "0.9"
void = "1"
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions protocols/request-response/Cargo.toml
Expand Up @@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"]
async-trait = "0.1"
bytes = "1"
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.11"
lru = "0.7"
rand = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion 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)
Expand Down
4 changes: 2 additions & 2 deletions swarm/Cargo.toml
Expand Up @@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion transports/deflate/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
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 }
flate2 = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion transports/dns/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]

[dependencies]
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.1"
futures = "0.3.1"
trust-dns-resolver = { version = "0.20", default-features = false, features = ["system-config"] }
Expand Down
2 changes: 1 addition & 1 deletion transports/noise/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ bytes = "1"
curve25519-dalek = "3.0.0"
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 }
log = "0.4"
prost = "0.9"
rand = "0.8.3"
Expand Down
2 changes: 1 addition & 1 deletion transports/plaintext/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
bytes = "1"
futures = "0.3.1"
asynchronous-codec = "0.6"
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.8"
prost = "0.9"
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
Expand Down
2 changes: 1 addition & 1 deletion transports/tcp/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ if-watch = { version = "0.2.0", optional = true }
if-addrs = { version = "0.6.4", optional = true }
ipnet = "2.0.0"
libc = "0.2.80"
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.11"
socket2 = { version = "0.4.0", features = ["all"] }
tokio-crate = { package = "tokio", version = "1.0.1", default-features = false, features = ["net"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion transports/uds/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]

[target.'cfg(all(unix, not(target_os = "emscripten")))'.dependencies]
async-std = { version = "1.6.2", optional = true }
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.1"
futures = "0.3.1"
tokio = { version = "1.0.1", default-features = false, features = ["net"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion transports/wasm-ext/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.1"
js-sys = "0.3.50"
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 }
parity-send-wrapper = "0.1.0"
wasm-bindgen = "0.2.42"
wasm-bindgen-futures = "0.4.4"
Expand Down
2 changes: 1 addition & 1 deletion transports/websocket/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
futures-rustls = "0.21"
either = "1.5.3"
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.8"
quicksink = "0.1"
rw-stream-sink = "0.2.0"
Expand Down

0 comments on commit 43fa6fd

Please sign in to comment.