Skip to content

Commit 012287a

Browse files
authored
Merge branch 'libp2p/v0.40' into master (#2324)
* *: Prepare v0.40.0 release (#2323) * Cargo.toml: Remove rc suffix
1 parent 7c2253d commit 012287a

Some content is hidden

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

50 files changed

+97
-115
lines changed

CHANGELOG.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,7 @@
4949
- `libp2p-websocket`
5050
- Forward `wasm-bindgen` feature to `futures-timer`, `instant`, `parking_lot`, `getrandom/js` and `rand/wasm-bindgen`.
5151

52-
## Version 0.40.0-rc.3 [2021-10-27]
53-
54-
- Update individual crates.
55-
- `libp2p-core`
56-
- `libp2p-identify`
57-
- `libp2p-swarm`
58-
59-
## Version 0.40.0-rc.2 [2021-10-15]
60-
61-
- Update individual crates.
62-
- `libp2p-kad`
63-
64-
## Version 0.40.0-rc.1 [2021-10-15]
52+
## Version 0.40.0 [2021-11-01]
6553

6654
- Update individual crates.
6755
- `libp2p-core`

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -71,36 +71,36 @@ futures-timer = "3.0.2" # Explicit dependency to be used in `wasm-bindgen` featu
7171
getrandom = "0.2.3" # Explicit dependency to be used in `wasm-bindgen` feature
7272
instant = "0.1.11" # Explicit dependency to be used in `wasm-bindgen` feature
7373
lazy_static = "1.2"
74-
libp2p-core = { version = "0.30.0-rc.2", path = "core", default-features = false }
75-
libp2p-floodsub = { version = "0.31.0-rc.1", path = "protocols/floodsub", optional = true }
76-
libp2p-gossipsub = { version = "0.33.0-rc.1", path = "./protocols/gossipsub", optional = true }
77-
libp2p-identify = { version = "0.31.0-rc.2", path = "protocols/identify", optional = true }
74+
libp2p-core = { version = "0.30.0", path = "core", default-features = false }
75+
libp2p-floodsub = { version = "0.31.0", path = "protocols/floodsub", optional = true }
76+
libp2p-gossipsub = { version = "0.33.0", path = "./protocols/gossipsub", optional = true }
77+
libp2p-identify = { version = "0.31.0", path = "protocols/identify", optional = true }
7878
libp2p-kad = { version = "0.33.0", path = "protocols/kad", optional = true }
79-
libp2p-metrics = { version = "0.1.0-rc.1", path = "misc/metrics", optional = true }
80-
libp2p-mplex = { version = "0.30.0-rc.1", path = "muxers/mplex", optional = true }
81-
libp2p-noise = { version = "0.33.0-rc.1", path = "transports/noise", optional = true }
82-
libp2p-ping = { version = "0.31.0-rc.1", path = "protocols/ping", optional = true }
83-
libp2p-plaintext = { version = "0.30.0-rc.1", path = "transports/plaintext", optional = true }
84-
libp2p-pnet = { version = "0.22.0-rc.1", path = "transports/pnet", optional = true }
85-
libp2p-relay = { version = "0.4.0-rc.1", path = "protocols/relay", optional = true }
86-
libp2p-rendezvous = { version = "0.1.0-rc.1", path = "protocols/rendezvous", optional = true }
87-
libp2p-request-response = { version = "0.13.0-rc.1", path = "protocols/request-response", optional = true }
88-
libp2p-swarm = { version = "0.31.0-rc.2", path = "swarm" }
89-
libp2p-swarm-derive = { version = "0.25.0-rc.1", path = "swarm-derive" }
90-
libp2p-uds = { version = "0.30.0-rc.1", path = "transports/uds", optional = true }
91-
libp2p-wasm-ext = { version = "0.30.0-rc.1", path = "transports/wasm-ext", default-features = false, optional = true }
92-
libp2p-yamux = { version = "0.34.0-rc.1", path = "muxers/yamux", optional = true }
93-
multiaddr = { version = "0.13.0-rc.1" }
94-
parking_lot = "0.11.2" # Explicit dependency to be used in `wasm-bindgen` feature
79+
libp2p-metrics = { version = "0.1.0", path = "misc/metrics", optional = true }
80+
libp2p-mplex = { version = "0.30.0", path = "muxers/mplex", optional = true }
81+
libp2p-noise = { version = "0.33.0", path = "transports/noise", optional = true }
82+
libp2p-ping = { version = "0.31.0", path = "protocols/ping", optional = true }
83+
libp2p-plaintext = { version = "0.30.0", path = "transports/plaintext", optional = true }
84+
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
85+
libp2p-relay = { version = "0.4.0", path = "protocols/relay", optional = true }
86+
libp2p-rendezvous = { version = "0.1.0", path = "protocols/rendezvous", optional = true }
87+
libp2p-request-response = { version = "0.13.0", path = "protocols/request-response", optional = true }
88+
libp2p-swarm = { version = "0.31.0", path = "swarm" }
89+
libp2p-swarm-derive = { version = "0.25.0", path = "swarm-derive" }
90+
libp2p-uds = { version = "0.30.0", path = "transports/uds", optional = true }
91+
libp2p-wasm-ext = { version = "0.30.0", path = "transports/wasm-ext", default-features = false, optional = true }
92+
libp2p-yamux = { version = "0.34.0", path = "muxers/yamux", optional = true }
93+
multiaddr = { version = "0.13.0" }
94+
parking_lot = "0.11.0"
9595
pin-project = "1.0.0"
9696
rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature
9797
smallvec = "1.6.1"
9898

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

106106
[dev-dependencies]

core/CHANGELOG.md

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

55
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
66

7-
# 0.30.0-rc.2 [2021-10-27]
7+
# 0.30.0 [2021-11-01]
88

99
- Add `ConnectionLimit::with_max_established` (see [PR 2137]).
1010

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 [2021-10-15]
1+
## Version 0.1.0 [2021-11-01]
22

33
- Add initial version.

misc/metrics/Cargo.toml

Lines changed: 5 additions & 5 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-rc.1"
5+
version = "0.1.0"
66
authors = ["Max Inden <[email protected]>"]
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-rc.1", path = "../../core" }
19-
libp2p-identify = { version = "0.31.0-rc.1", path = "../../protocols/identify", optional = true }
18+
libp2p-core= { version = "0.30.0", path = "../../core" }
19+
libp2p-identify = { version = "0.31.0", path = "../../protocols/identify", optional = true }
2020
libp2p-kad = { version = "0.33.0", 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" }
21+
libp2p-ping = { version = "0.31.0", path = "../../protocols/ping", optional = true }
22+
libp2p-swarm = { version = "0.31.0", 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-rc.1 [2021-10-15]
1+
# 0.10.4 [2021-11-01]
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-rc.1 [2021-10-15]
1+
# 0.30.0 [2021-11-01]
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-rc.1"
5+
version = "0.30.0"
66
authors = ["Parity Technologies <[email protected]>"]
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-rc.1", path = "../../core", default-features = false }
16+
libp2p-core = { version = "0.30.0", 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-rc.1 [2021-10-15]
1+
# 0.34.0 [2021-11-01]
22

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

muxers/yamux/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-yamux"
33
edition = "2018"
44
description = "Yamux multiplexing protocol for libp2p"
5-
version = "0.34.0-rc.1"
5+
version = "0.34.0"
66
authors = ["Parity Technologies <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
1111

1212
[dependencies]
1313
futures = "0.3.1"
14-
libp2p-core = { version = "0.30.0-rc.1", path = "../../core", default-features = false }
14+
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
1515
parking_lot = "0.11"
1616
thiserror = "1.0"
1717
yamux = "0.9.0"

0 commit comments

Comments
 (0)