Skip to content

Commit

Permalink
*: Prepare v0.40.0-rc.3 release candidate (#2313)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Oct 27, 2021
1 parent 6e76435 commit 8ea60af
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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]

Expand Down
8 changes: 4 additions & 4 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,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 }
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
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
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

0 comments on commit 8ea60af

Please sign in to comment.