Merge branch 'libp2p/v0.40' into master (#2324)

* *: Prepare v0.40.0 release (#2323)

* Cargo.toml: Remove rc suffix
This commit is contained in:
Max Inden
2021-11-02 20:40:48 +01:00
committed by GitHub
parent 7c2253d89d
commit 012287ad1e
50 changed files with 97 additions and 115 deletions

View File

@ -49,19 +49,7 @@
- `libp2p-websocket`
- Forward `wasm-bindgen` feature to `futures-timer`, `instant`, `parking_lot`, `getrandom/js` and `rand/wasm-bindgen`.
## 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]
- Update individual crates.
- `libp2p-kad`
## Version 0.40.0-rc.1 [2021-10-15]
## Version 0.40.0 [2021-11-01]
- Update individual crates.
- `libp2p-core`

View File

@ -71,36 +71,36 @@ futures-timer = "3.0.2" # Explicit dependency to be used in `wasm-bindgen` featu
getrandom = "0.2.3" # Explicit dependency to be used in `wasm-bindgen` feature
instant = "0.1.11" # Explicit dependency to be used in `wasm-bindgen` feature
lazy_static = "1.2"
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.2", path = "protocols/identify", optional = true }
libp2p-core = { version = "0.30.0", path = "core", default-features = false }
libp2p-floodsub = { version = "0.31.0", path = "protocols/floodsub", optional = true }
libp2p-gossipsub = { version = "0.33.0", path = "./protocols/gossipsub", optional = true }
libp2p-identify = { version = "0.31.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.33.0", 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 }
libp2p-noise = { version = "0.33.0-rc.1", path = "transports/noise", optional = true }
libp2p-ping = { version = "0.31.0-rc.1", path = "protocols/ping", optional = true }
libp2p-plaintext = { version = "0.30.0-rc.1", path = "transports/plaintext", optional = true }
libp2p-pnet = { version = "0.22.0-rc.1", path = "transports/pnet", optional = true }
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.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 }
libp2p-yamux = { version = "0.34.0-rc.1", path = "muxers/yamux", optional = true }
multiaddr = { version = "0.13.0-rc.1" }
parking_lot = "0.11.2" # Explicit dependency to be used in `wasm-bindgen` feature
libp2p-metrics = { version = "0.1.0", path = "misc/metrics", optional = true }
libp2p-mplex = { version = "0.30.0", path = "muxers/mplex", optional = true }
libp2p-noise = { version = "0.33.0", path = "transports/noise", optional = true }
libp2p-ping = { version = "0.31.0", path = "protocols/ping", optional = true }
libp2p-plaintext = { version = "0.30.0", path = "transports/plaintext", optional = true }
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
libp2p-relay = { version = "0.4.0", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.1.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.13.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.31.0", path = "swarm" }
libp2p-swarm-derive = { version = "0.25.0", path = "swarm-derive" }
libp2p-uds = { version = "0.30.0", path = "transports/uds", optional = true }
libp2p-wasm-ext = { version = "0.30.0", path = "transports/wasm-ext", default-features = false, optional = true }
libp2p-yamux = { version = "0.34.0", path = "muxers/yamux", optional = true }
multiaddr = { version = "0.13.0" }
parking_lot = "0.11.0"
pin-project = "1.0.0"
rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature
smallvec = "1.6.1"
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies]
libp2p-deflate = { version = "0.30.0-rc.1", path = "transports/deflate", optional = true }
libp2p-dns = { version = "0.30.0-rc.1", path = "transports/dns", optional = true, default-features = false }
libp2p-mdns = { version = "0.32.0-rc.1", path = "protocols/mdns", optional = true }
libp2p-tcp = { version = "0.30.0-rc.1", path = "transports/tcp", default-features = false, optional = true }
libp2p-deflate = { version = "0.30.0", path = "transports/deflate", optional = true }
libp2p-dns = { version = "0.30.0", path = "transports/dns", optional = true, default-features = false }
libp2p-mdns = { version = "0.32.0", path = "protocols/mdns", optional = true }
libp2p-tcp = { version = "0.30.0", path = "transports/tcp", default-features = false, optional = true }
libp2p-websocket = { version = "0.32.0", path = "transports/websocket", optional = true }
[dev-dependencies]

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.30.0-rc.2 [2021-10-27]
# 0.30.0 [2021-11-01]
- Add `ConnectionLimit::with_max_established` (see [PR 2137]).

View File

@ -1,3 +1,3 @@
## Version 0.1.0 [2021-10-15]
## Version 0.1.0 [2021-11-01]
- Add initial version.

View File

@ -2,7 +2,7 @@
name = "libp2p-metrics"
edition = "2018"
description = "Metrics for libp2p"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Max Inden <mail@max-inden.de>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -15,11 +15,11 @@ kad = ["libp2p-kad"]
ping = ["libp2p-ping"]
[dependencies]
libp2p-core= { version = "0.30.0-rc.1", path = "../../core" }
libp2p-identify = { version = "0.31.0-rc.1", path = "../../protocols/identify", optional = true }
libp2p-core= { version = "0.30.0", path = "../../core" }
libp2p-identify = { version = "0.31.0", path = "../../protocols/identify", optional = true }
libp2p-kad = { version = "0.33.0", 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-ping = { version = "0.31.0", path = "../../protocols/ping", optional = true }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
open-metrics-client = "0.12.0"
[dev-dependencies]

View File

@ -1,4 +1,4 @@
# 0.10.4-rc.1 [2021-10-15]
# 0.10.4 [2021-11-01]
- Implement `From<io::Error> for ProtocolError` instead of `Into`.
[PR 2169](https://github.com/libp2p/rust-libp2p/pull/2169)

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-mplex"
edition = "2018"
description = "Mplex multiplexing protocol for libp2p"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", path = "../../core", default-features = false }
log = "0.4"
nohash-hasher = "0.2"
parking_lot = "0.11"

View File

@ -1,4 +1,4 @@
# 0.34.0-rc.1 [2021-10-15]
# 0.34.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-yamux"
edition = "2018"
description = "Yamux multiplexing protocol for libp2p"
version = "0.34.0-rc.1"
version = "0.34.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", path = "../../core", default-features = false }
parking_lot = "0.11"
thiserror = "1.0"
yamux = "0.9.0"

View File

@ -1,4 +1,4 @@
# 0.31.0-rc.1 [2021-10-15]
# 0.31.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-floodsub"
edition = "2018"
description = "Floodsub protocol for libp2p"
version = "0.31.0-rc.1"
version = "0.31.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
log = "0.4"
prost = "0.9"
rand = "0.7"

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.33.0-rc.1 [2021-10-15]
# 0.33.0 [2021-11-01]
- Add an event to register peers that do not support the gossipsub protocol
[PR 2241](https://github.com/libp2p/rust-libp2p/pull/2241)

View File

@ -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", path = "../../swarm" }
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
bytes = "1.0"
byteorder = "1.3.4"
fnv = "1.0.7"

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.31.0-rc.2 [2021-10-27]
# 0.31.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -12,8 +12,8 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.1"
futures-timer = "3.0.2"
libp2p-core = { version = "0.30.0-rc.2", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0-rc.2", path = "../../swarm" }
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
log = "0.4.1"
lru = "0.6"
prost = "0.9"

View File

@ -12,13 +12,7 @@
[PR 2297]: https://github.com/libp2p/rust-libp2p/pull/2297
[PR 2309]: https://github.com/libp2p/rust-libp2p/pull/2309
# 0.32.0-rc.2 [2021-10-15]
- Export `KademliaBucketInserts` (see [PR 2294]).
[PR 2294]: https://github.com/libp2p/rust-libp2p/pull/2294
# 0.32.0-rc.1 [2021-10-15]
# 0.32.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
prost = "0.9"
rand = "0.7.2"
sha2 = "0.9.1"

View File

@ -1,4 +1,4 @@
# 0.32.0-rc.1 [2021-10-15]
# 0.32.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -1,7 +1,7 @@
[package]
name = "libp2p-mdns"
edition = "2018"
version = "0.32.0-rc.1"
version = "0.32.0"
description = "Implementation of the libp2p mDNS discovery method"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
@ -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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
log = "0.4.14"
rand = "0.8.3"
smallvec = "1.6.1"

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.31.0-rc.1 [2021-10-15]
# 0.31.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"]
futures = "0.3.1"
futures-timer = "3.0.2"
instant = "0.1.11"
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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
log = "0.4.1"
rand = "0.7.2"
void = "1.0"

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.4.0-rc.1 [2021-10-15]
# 0.4.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -15,8 +15,8 @@ bytes = "1"
futures = "0.3.1"
futures-timer = "3"
instant = "0.1.11"
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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
log = "0.4"
pin-project = "1"
prost = "0.9"

View File

@ -4,6 +4,6 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.1.0-rc.1 [2021-10-15]
# 0.1.0 [2021-11-01]
- Initial release.

View File

@ -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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
prost = "0.9"
void = "1"
log = "0.4"

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.13.0-rc.1 [2021-10-15]
# 0.13.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -14,8 +14,8 @@ async-trait = "0.1"
bytes = "1"
futures = "0.3.1"
instant = "0.1.11"
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", path = "../../core", default-features = false }
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
log = "0.4.11"
lru = "0.7"
rand = "0.7"

View File

@ -1,4 +1,4 @@
# 0.25.0-rc.1 [2021-10-15]
# 0.25.0 [2021-11-01]
- Update to latest `libp2p-swarm` changes (see [PR 2191]).

View File

@ -2,7 +2,7 @@
name = "libp2p-swarm-derive"
edition = "2018"
description = "Procedural macros of libp2p-core"
version = "0.25.0-rc.1"
version = "0.25.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -4,7 +4,7 @@
[PR 2245]: https://github.com/libp2p/rust-libp2p/pull/2245
# 0.31.0-rc.2 [2021-10-27]
# 0.31.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
either = "1.6.0"
futures = "0.3.1"
libp2p-core = { version = "0.30.0-rc.2", path = "../core", default-features = false }
libp2p-core = { version = "0.30.0", path = "../core", default-features = false }
log = "0.4"
rand = "0.7"
smallvec = "1.6.1"

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-deflate"
edition = "2018"
description = "Deflate encryption protocol for libp2p"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", path = "../../core", default-features = false }
flate2 = "1.0"
[dev-dependencies]

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-dns"
edition = "2018"
description = "DNS transport implementation for libp2p"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", 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"] }

View File

@ -1,4 +1,4 @@
# 0.33.0-rc.1 [2021-10-15]
# 0.33.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -1,7 +1,7 @@
[package]
name = "libp2p-noise"
description = "Cryptographic handshake protocol using the noise framework."
version = "0.33.0-rc.1"
version = "0.33.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", path = "../../core", default-features = false }
log = "0.4"
prost = "0.9"
rand = "0.8.3"

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-plaintext"
edition = "2018"
description = "Plaintext encryption dummy protocol for libp2p"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", path = "../../core", default-features = false }
log = "0.4.8"
prost = "0.9"
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }

View File

@ -1,4 +1,4 @@
# 0.22.0-rc.1 [2021-10-15]
# 0.22.0 [2021-11-01]
- Update dependencies.

View File

@ -2,7 +2,7 @@
name = "libp2p-pnet"
edition = "2018"
description = "Private swarm support for libp2p"
version = "0.22.0-rc.1"
version = "0.22.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-tcp"
edition = "2018"
description = "TCP/IP transport protocol for libp2p"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", 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 }

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -2,7 +2,7 @@
name = "libp2p-uds"
edition = "2018"
description = "Unix domain sockets transport for libp2p"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -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", 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 }

View File

@ -1,4 +1,4 @@
# 0.30.0-rc.1 [2021-10-15]
# 0.30.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -1,6 +1,6 @@
[package]
name = "libp2p-wasm-ext"
version = "0.30.0-rc.1"
version = "0.30.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
edition = "2018"
description = "Allows passing in an external transport in a WASM environment"
@ -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", path = "../../core", default-features = false }
parity-send-wrapper = "0.1.0"
wasm-bindgen = "0.2.42"
wasm-bindgen-futures = "0.4.4"

View File

@ -4,7 +4,7 @@
[PR 2085]: https://github.com/libp2p/rust-libp2p/pull/2085
# 0.31.0-rc.1 [2021-10-15]
# 0.31.0 [2021-11-01]
- Make default features of `libp2p-core` optional.
[PR 2181](https://github.com/libp2p/rust-libp2p/pull/2181)

View File

@ -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", path = "../../core", default-features = false }
log = "0.4.8"
quicksink = "0.1"
rw-stream-sink = "0.2.0"