Skip to content

Commit a905665

Browse files
authored
*: Prepare v0.40.0-rc.1 release (#2290)
1 parent 40c5335 commit a905665

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+110
-110
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
# `libp2p` facade crate
4444

45-
## Version 0.40.0 [unreleased]
45+
## Version 0.40.0-rc.1 [2021-10-15]
4646

4747
- Update individual crates.
4848
- `libp2p-core`

Cargo.toml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p"
33
edition = "2018"
44
description = "Peer-to-peer networking library"
5-
version = "0.40.0"
5+
version = "0.40.0-rc.1-rc.1"
66
authors = ["Parity Technologies <admin@parity.io>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -68,37 +68,37 @@ atomic = "0.5.0"
6868
bytes = "1"
6969
futures = "0.3.1"
7070
lazy_static = "1.2"
71-
libp2p-core = { version = "0.30.0", path = "core", default-features = false }
72-
libp2p-floodsub = { version = "0.31.0", path = "protocols/floodsub", optional = true }
73-
libp2p-gossipsub = { version = "0.33.0", path = "./protocols/gossipsub", optional = true }
74-
libp2p-identify = { version = "0.31.0", path = "protocols/identify", optional = true }
75-
libp2p-kad = { version = "0.32.0", path = "protocols/kad", optional = true }
76-
libp2p-metrics = { version = "0.1.0", path = "misc/metrics", optional = true }
77-
libp2p-mplex = { version = "0.30.0", path = "muxers/mplex", optional = true }
78-
libp2p-noise = { version = "0.33.0", path = "transports/noise", optional = true }
79-
libp2p-ping = { version = "0.31.0", path = "protocols/ping", optional = true }
80-
libp2p-plaintext = { version = "0.30.0", path = "transports/plaintext", optional = true }
81-
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
82-
libp2p-relay = { version = "0.4.0", path = "protocols/relay", optional = true }
83-
libp2p-rendezvous = { version = "0.1.0", path = "protocols/rendezvous", optional = true }
84-
libp2p-request-response = { version = "0.13.0", path = "protocols/request-response", optional = true }
85-
libp2p-swarm = { version = "0.31.0", path = "swarm" }
86-
libp2p-swarm-derive = { version = "0.25.0", path = "swarm-derive" }
87-
libp2p-uds = { version = "0.30.0", path = "transports/uds", optional = true }
88-
libp2p-wasm-ext = { version = "0.30.0", path = "transports/wasm-ext", default-features = false, optional = true }
89-
libp2p-yamux = { version = "0.34.0", path = "muxers/yamux", optional = true }
90-
multiaddr = { version = "0.13.0" }
71+
libp2p-core = { version = "0.30.0-rc.1", path = "core", default-features = false }
72+
libp2p-floodsub = { version = "0.31.0-rc.1", path = "protocols/floodsub", optional = true }
73+
libp2p-gossipsub = { version = "0.33.0-rc.1", path = "./protocols/gossipsub", optional = true }
74+
libp2p-identify = { version = "0.31.0-rc.1", path = "protocols/identify", optional = true }
75+
libp2p-kad = { version = "0.32.0-rc.1", path = "protocols/kad", optional = true }
76+
libp2p-metrics = { version = "0.1.0-rc.1", path = "misc/metrics", optional = true }
77+
libp2p-mplex = { version = "0.30.0-rc.1", path = "muxers/mplex", optional = true }
78+
libp2p-noise = { version = "0.33.0-rc.1", path = "transports/noise", optional = true }
79+
libp2p-ping = { version = "0.31.0-rc.1", path = "protocols/ping", optional = true }
80+
libp2p-plaintext = { version = "0.30.0-rc.1", path = "transports/plaintext", optional = true }
81+
libp2p-pnet = { version = "0.22.0-rc.1", path = "transports/pnet", optional = true }
82+
libp2p-relay = { version = "0.4.0-rc.1", path = "protocols/relay", optional = true }
83+
libp2p-rendezvous = { version = "0.1.0-rc.1", path = "protocols/rendezvous", optional = true }
84+
libp2p-request-response = { version = "0.13.0-rc.1", path = "protocols/request-response", optional = true }
85+
libp2p-swarm = { version = "0.31.0-rc.1", path = "swarm" }
86+
libp2p-swarm-derive = { version = "0.25.0-rc.1", path = "swarm-derive" }
87+
libp2p-uds = { version = "0.30.0-rc.1", path = "transports/uds", optional = true }
88+
libp2p-wasm-ext = { version = "0.30.0-rc.1", path = "transports/wasm-ext", default-features = false, optional = true }
89+
libp2p-yamux = { version = "0.34.0-rc.1", path = "muxers/yamux", optional = true }
90+
multiaddr = { version = "0.13.0-rc.1" }
9191
parking_lot = "0.11.0"
9292
pin-project = "1.0.0"
9393
smallvec = "1.6.1"
9494
wasm-timer = "0.2.4"
9595

9696
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies]
97-
libp2p-deflate = { version = "0.30.0", path = "transports/deflate", optional = true }
98-
libp2p-dns = { version = "0.30.0", path = "transports/dns", optional = true, default-features = false }
99-
libp2p-mdns = { version = "0.32.0", path = "protocols/mdns", optional = true }
100-
libp2p-tcp = { version = "0.30.0", path = "transports/tcp", default-features = false, optional = true }
101-
libp2p-websocket = { version = "0.31.0", path = "transports/websocket", optional = true }
97+
libp2p-deflate = { version = "0.30.0-rc.1", path = "transports/deflate", optional = true }
98+
libp2p-dns = { version = "0.30.0-rc.1", path = "transports/dns", optional = true, default-features = false }
99+
libp2p-mdns = { version = "0.32.0-rc.1", path = "protocols/mdns", optional = true }
100+
libp2p-tcp = { version = "0.30.0-rc.1", path = "transports/tcp", default-features = false, optional = true }
101+
libp2p-websocket = { version = "0.31.0-rc.1", path = "transports/websocket", optional = true }
102102

103103
[dev-dependencies]
104104
async-std = { version = "1.6.2", features = ["attributes"] }

core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.30.0 [unreleased]
1+
# 0.30.0-rc.1 [2021-10-15]
22

33
- Add `ConnectionLimit::with_max_established` (see [PR 2137]).
44

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-core"
33
edition = "2018"
44
description = "Core traits and structs of libp2p"
5-
version = "0.30.0"
5+
version = "0.30.0-rc.1"
66
authors = ["Parity Technologies <admin@parity.io>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"

misc/metrics/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## Version 0.1.0 [unreleased]
1+
## Version 0.1.0 [2021-10-15]
22

33
- Add initial version.

misc/metrics/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-metrics"
33
edition = "2018"
44
description = "Metrics for libp2p"
5-
version = "0.1.0"
5+
version = "0.1.0-rc.1"
66
authors = ["Max Inden <mail@max-inden.de>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -15,11 +15,11 @@ kad = ["libp2p-kad"]
1515
ping = ["libp2p-ping"]
1616

1717
[dependencies]
18-
libp2p-core= { version = "0.30.0", path = "../../core" }
19-
libp2p-identify = { version = "0.31.0", path = "../../protocols/identify", optional = true }
20-
libp2p-kad = { version = "0.32.0", path = "../../protocols/kad", optional = true }
21-
libp2p-ping = { version = "0.31.0", path = "../../protocols/ping", optional = true }
22-
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
18+
libp2p-core= { version = "0.30.0-rc.1", path = "../../core" }
19+
libp2p-identify = { version = "0.31.0-rc.1", path = "../../protocols/identify", optional = true }
20+
libp2p-kad = { version = "0.32.0-rc.1", path = "../../protocols/kad", optional = true }
21+
libp2p-ping = { version = "0.31.0-rc.1", path = "../../protocols/ping", optional = true }
22+
libp2p-swarm = { version = "0.31.0-rc.1", path = "../../swarm" }
2323
open-metrics-client = "0.12.0"
2424

2525
[dev-dependencies]

misc/multistream-select/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.10.4 [unreleased]
1+
# 0.10.4-rc.1 [2021-10-15]
22

33
- Implement `From<io::Error> for ProtocolError` instead of `Into`.
44
[PR 2169](https://github.com/libp2p/rust-libp2p/pull/2169)

muxers/mplex/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.30.0 [unreleased]
1+
# 0.30.0-rc.1 [2021-10-15]
22

33
- Make default features of `libp2p-core` optional.
44
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

muxers/mplex/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-mplex"
33
edition = "2018"
44
description = "Mplex multiplexing protocol for libp2p"
5-
version = "0.30.0"
5+
version = "0.30.0-rc.1"
66
authors = ["Parity Technologies <admin@parity.io>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
1313
bytes = "1"
1414
futures = "0.3.1"
1515
asynchronous-codec = "0.6"
16-
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
16+
libp2p-core = { version = "0.30.0-rc.1", path = "../../core", default-features = false }
1717
log = "0.4"
1818
nohash-hasher = "0.2"
1919
parking_lot = "0.11"

muxers/yamux/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.34.0 [unreleased]
1+
# 0.34.0-rc.1 [2021-10-15]
22

33
- Make default features of `libp2p-core` optional.
44
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

0 commit comments

Comments
 (0)