Skip to content

Commit

Permalink
chore: Bump libp2p-swarm dependents
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Dec 10, 2022
1 parent 4fe518d commit 102da65
Show file tree
Hide file tree
Showing 26 changed files with 109 additions and 29 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Expand Up @@ -50,7 +50,27 @@
- Remove `SimpleProtocol` due to being unused. See [`libp2p::core::upgrade`](https://docs.rs/libp2p/0.50.0/libp2p/core/upgrade/index.html) for alternatives. See [PR 3191].

- Update individual crates.
- Update to [`libp2p-swarm` `v0.42.0`](swarm/CHANGELOG.md#0420).
- Update to [`libp2p-dcutr` `v0.9.0`](protocols/dcutr/CHANGELOG.md#090).

- Update to [`libp2p-ping` `v0.42.0`](protocols/ping/CHANGELOG.md#0420).

- Update to [`libp2p-request-response` `v0.24.0`](protocols/request-response/CHANGELOG.md#0240).

- Update to [`libp2p-kad` `v0.43.0`](protocols/kad/CHANGELOG.md#0430).

- Update to [`libp2p-floodsub` `v0.42.0`](protocols/floodsub/CHANGELOG.md#0420).

- Update to [`libp2p-autonat` `v0.10.0`](protocols/autonat/CHANGELOG.md#0100).

- Update to [`libp2p-relay` `v0.15.0`](protocols/relay/CHANGELOG.md#0150).

- Update to [`libp2p-identify` `v0.42.0`](protocols/identify/CHANGELOG.md#0420).

- Update to [`libp2p-rendezvous` `v0.12.0`](protocols/rendezvous/CHANGELOG.md#0120).

- Update to [`libp2p-metrics` `v0.12.0`](misc/metrics/CHANGELOG.md#0120).

- Update to [`libp2p-swarm` `v0.42.0`](swarm/CHANGELOG.md#0420).

[PR 3191]: https://github.com/libp2p/rust-libp2p/pull/3191

Expand Down
20 changes: 10 additions & 10 deletions Cargo.toml
Expand Up @@ -92,21 +92,21 @@ 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

libp2p-autonat = { version = "0.9.0", path = "protocols/autonat", optional = true }
libp2p-autonat = { version = "0.10.0", path = "protocols/autonat", optional = true }
libp2p-core = { version = "0.38.0", path = "core" }
libp2p-dcutr = { version = "0.8.0", path = "protocols/dcutr", optional = true }
libp2p-floodsub = { version = "0.41.0", path = "protocols/floodsub", optional = true }
libp2p-identify = { version = "0.41.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.42.0", path = "protocols/kad", optional = true }
libp2p-metrics = { version = "0.11.0", path = "misc/metrics", optional = true }
libp2p-dcutr = { version = "0.9.0", path = "protocols/dcutr", optional = true }
libp2p-floodsub = { version = "0.42.0", path = "protocols/floodsub", optional = true }
libp2p-identify = { version = "0.42.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.43.0", path = "protocols/kad", optional = true }
libp2p-metrics = { version = "0.12.0", path = "misc/metrics", optional = true }
libp2p-mplex = { version = "0.38.0", path = "muxers/mplex", optional = true }
libp2p-noise = { version = "0.41.0", path = "transports/noise", optional = true }
libp2p-ping = { version = "0.41.0", path = "protocols/ping", optional = true }
libp2p-ping = { version = "0.42.0", path = "protocols/ping", optional = true }
libp2p-plaintext = { version = "0.38.0", path = "transports/plaintext", optional = true }
libp2p-pnet = { version = "0.22.2", path = "transports/pnet", optional = true }
libp2p-relay = { version = "0.14.0", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.11.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.23.0", path = "protocols/request-response", optional = true }
libp2p-relay = { version = "0.15.0", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.12.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.24.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.42.0", path = "swarm" }
libp2p-uds = { version = "0.37.0", path = "transports/uds", optional = true }
libp2p-wasm-ext = { version = "0.38.0", path = "transports/wasm-ext", optional = true }
Expand Down
14 changes: 14 additions & 0 deletions misc/metrics/CHANGELOG.md
@@ -1,3 +1,17 @@
# 0.12.0 [unreleased]

- Update to `libp2p-dcutr` `v0.9.0`.

- Update to `libp2p-ping` `v0.42.0`.

- Update to `libp2p-kad` `v0.43.0`.

- Update to `libp2p-relay` `v0.15.0`.

- Update to `libp2p-identify` `v0.42.0`.

- Update to `libp2p-swarm` `v0.42.0`.

# 0.11.0

- Update to `libp2p-dcutr` `v0.8.0`.
Expand Down
12 changes: 6 additions & 6 deletions misc/metrics/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-metrics"
edition = "2021"
rust-version = "1.62.0"
description = "Metrics for libp2p"
version = "0.11.0"
version = "0.12.0"
authors = ["Max Inden <mail@max-inden.de>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -20,11 +20,11 @@ dcutr = ["libp2p-dcutr"]

[dependencies]
libp2p-core = { version = "0.38.0", path = "../../core" }
libp2p-dcutr = { version = "0.8.0", path = "../../protocols/dcutr", optional = true }
libp2p-identify = { version = "0.41.0", path = "../../protocols/identify", optional = true }
libp2p-kad = { version = "0.42.0", path = "../../protocols/kad", optional = true }
libp2p-ping = { version = "0.41.0", path = "../../protocols/ping", optional = true }
libp2p-relay = { version = "0.14.0", path = "../../protocols/relay", optional = true }
libp2p-dcutr = { version = "0.9.0", path = "../../protocols/dcutr", optional = true }
libp2p-identify = { version = "0.42.0", path = "../../protocols/identify", optional = true }
libp2p-kad = { version = "0.43.0", path = "../../protocols/kad", optional = true }
libp2p-ping = { version = "0.42.0", path = "../../protocols/ping", optional = true }
libp2p-relay = { version = "0.15.0", path = "../../protocols/relay", optional = true }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }
prometheus-client = "0.18.0"

Expand Down
6 changes: 6 additions & 0 deletions protocols/autonat/CHANGELOG.md
@@ -1,3 +1,9 @@
# 0.10.0 [unreleased]

- Update to `libp2p-request-response` `v0.24.0`.

- Update to `libp2p-swarm` `v0.42.0`.

# 0.9.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
4 changes: 2 additions & 2 deletions protocols/autonat/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-autonat"
edition = "2021"
rust-version = "1.62.0"
description = "NAT and firewall detection for libp2p"
version = "0.9.0"
version = "0.10.0"
authors = ["David Craven <david@craven.ch>", "Elena Frank <elena.frank@protonmail.com>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand All @@ -20,7 +20,7 @@ futures-timer = "3.0"
instant = "0.1"
libp2p-core = { version = "0.38.0", path = "../../core" }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }
libp2p-request-response = { version = "0.23.0", path = "../request-response" }
libp2p-request-response = { version = "0.24.0", path = "../request-response" }
log = "0.4"
rand = "0.8"
prost = "0.11"
Expand Down
4 changes: 4 additions & 0 deletions protocols/dcutr/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.9.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.8.0

- Update to `prost-codec` `v0.3.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/dcutr/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-dcutr"
edition = "2021"
rust-version = "1.62.0"
description = "Direct connection upgrade through relay"
version = "0.8.0"
version = "0.9.0"
authors = ["Max Inden <mail@max-inden.de>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/floodsub/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.42.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.41.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/floodsub/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-floodsub"
edition = "2021"
rust-version = "1.62.0"
description = "Floodsub protocol for libp2p"
version = "0.41.0"
version = "0.42.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/gossipsub/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.44.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.43.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/gossipsub/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-gossipsub"
edition = "2021"
rust-version = "1.62.0"
description = "Gossipsub protocol for libp2p"
version = "0.43.0"
version = "0.44.0"
authors = ["Age Manning <Age@AgeManning.com>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/identify/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.42.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.41.0

- Change default `cache_size` of `Config` to 100. See [PR 2995].
Expand Down
2 changes: 1 addition & 1 deletion protocols/identify/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-identify"
edition = "2021"
rust-version = "1.62.0"
description = "Nodes identifcation protocol for libp2p"
version = "0.41.0"
version = "0.42.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/kad/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.43.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.42.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/kad/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-kad"
edition = "2021"
rust-version = "1.62.0"
description = "Kademlia protocol for libp2p"
version = "0.42.0"
version = "0.43.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/mdns/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.43.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.42.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/mdns/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "libp2p-mdns"
edition = "2021"
rust-version = "1.62.0"
version = "0.42.0"
version = "0.43.0"
description = "Implementation of the libp2p mDNS discovery method"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
Expand Down
4 changes: 4 additions & 0 deletions protocols/ping/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.42.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.41.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/ping/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-ping"
edition = "2021"
rust-version = "1.62.0"
description = "Ping protocol for libp2p"
version = "0.41.0"
version = "0.42.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/relay/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.15.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.14.0

- Update to `prost-codec` `v0.3.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/relay/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-relay"
edition = "2021"
rust-version = "1.62.0"
description = "Communications relaying for libp2p"
version = "0.14.0"
version = "0.15.0"
authors = ["Parity Technologies <admin@parity.io>", "Max Inden <mail@max-inden.de>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/rendezvous/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.12.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.11.0

- De- and encode protobuf messages using `prost-codec`. See [PR 3058].
Expand Down
2 changes: 1 addition & 1 deletion protocols/rendezvous/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-rendezvous"
edition = "2021"
rust-version = "1.62.0"
description = "Rendezvous protocol for libp2p"
version = "0.11.0"
version = "0.12.0"
authors = ["The COMIT guys <hello@comit.network>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
4 changes: 4 additions & 0 deletions protocols/request-response/CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.24.0 [unreleased]

- Update to `libp2p-swarm` `v0.42.0`.

# 0.23.0

- Update to `libp2p-core` `v0.38.0`.
Expand Down
2 changes: 1 addition & 1 deletion protocols/request-response/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-request-response"
edition = "2021"
rust-version = "1.62.0"
description = "Generic Request/Response Protocols"
version = "0.23.0"
version = "0.24.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down

0 comments on commit 102da65

Please sign in to comment.