Skip to content

Commit dbcfed3

Browse files
committed
fix: minor version bump packages affected by #5676
1 parent 0177ddf commit dbcfed3

File tree

22 files changed

+39
-46
lines changed

22 files changed

+39
-46
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ rust-version = "1.83.0"
7373

7474
[workspace.dependencies]
7575
libp2p = { version = "0.55.0", path = "libp2p" }
76-
libp2p-allow-block-list = { version = "0.4.1", path = "misc/allow-block-list" }
77-
libp2p-autonat = { version = "0.13.1", path = "protocols/autonat" }
78-
libp2p-connection-limits = { version = "0.4.1", path = "misc/connection-limits" }
79-
libp2p-core = { version = "0.42.1", path = "core" }
76+
libp2p-allow-block-list = { version = "0.5.0", path = "misc/allow-block-list" }
77+
libp2p-autonat = { version = "0.14.0", path = "protocols/autonat" }
78+
libp2p-connection-limits = { version = "0.5.0", path = "misc/connection-limits" }
79+
libp2p-core = { version = "0.43.0", path = "core" }
8080
libp2p-dcutr = { version = "0.12.1", path = "protocols/dcutr" }
8181
libp2p-dns = { version = "0.42.1", path = "transports/dns" }
8282
libp2p-floodsub = { version = "0.45.0", path = "protocols/floodsub" }
@@ -85,21 +85,21 @@ libp2p-identify = { version = "0.46.0", path = "protocols/identify" }
8585
libp2p-identity = { version = "0.2.10" }
8686
libp2p-kad = { version = "0.47.0", path = "protocols/kad" }
8787
libp2p-mdns = { version = "0.46.1", path = "protocols/mdns" }
88-
libp2p-memory-connection-limits = { version = "0.3.1", path = "misc/memory-connection-limits" }
88+
libp2p-memory-connection-limits = { version = "0.4.0", path = "misc/memory-connection-limits" }
8989
libp2p-metrics = { version = "0.15.0", path = "misc/metrics" }
9090
libp2p-mplex = { version = "0.42.0", path = "muxers/mplex" }
9191
libp2p-noise = { version = "0.45.1", path = "transports/noise" }
9292
libp2p-perf = { version = "0.4.0", path = "protocols/perf" }
93-
libp2p-ping = { version = "0.45.1", path = "protocols/ping" }
93+
libp2p-ping = { version = "0.46.0", path = "protocols/ping" }
9494
libp2p-plaintext = { version = "0.42.0", path = "transports/plaintext" }
9595
libp2p-pnet = { version = "0.25.0", path = "transports/pnet" }
96-
libp2p-quic = { version = "0.11.2", path = "transports/quic" }
96+
libp2p-quic = { version = "0.11.1", path = "transports/quic" }
9797
libp2p-relay = { version = "0.18.1", path = "protocols/relay" }
9898
libp2p-rendezvous = { version = "0.15.1", path = "protocols/rendezvous" }
9999
libp2p-request-response = { version = "0.28.0", path = "protocols/request-response" }
100100
libp2p-server = { version = "0.12.6", path = "misc/server" }
101-
libp2p-stream = { version = "0.2.0-alpha.1", path = "protocols/stream" }
102-
libp2p-swarm = { version = "0.45.2", path = "swarm" }
101+
libp2p-stream = { version = "0.3.0-alpha", path = "protocols/stream" }
102+
libp2p-swarm = { version = "0.46.0", path = "swarm" }
103103
libp2p-swarm-derive = { version = "=0.35.0", path = "swarm-derive" } # `libp2p-swarm-derive` may not be compatible with different `libp2p-swarm` non-breaking releases. E.g. `libp2p-swarm` might introduce a new enum variant `FromSwarm` (which is `#[non-exhaustive]`) in a non-breaking release. Older versions of `libp2p-swarm-derive` would not forward this enum variant within the `NetworkBehaviour` hierarchy. Thus the version pinning is required.
104104
libp2p-swarm-test = { version = "0.5.0", path = "swarm-test" }
105105
libp2p-tcp = { version = "0.42.1", path = "transports/tcp" }

core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.42.1
1+
## 0.43.0
22

33
- Added `libp2p::core::util::unreachable` that is a drop-in replacement of `void::unreachable`.
44
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-core"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "Core traits and structs of libp2p"
6-
version = "0.42.1"
6+
version = "0.43.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

examples/stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ release = false
1212
anyhow = "1"
1313
futures = { workspace = true }
1414
libp2p = { path = "../../libp2p", features = [ "tokio", "quic"] }
15-
libp2p-stream = { path = "../../protocols/stream", version = "0.2.0-alpha" }
15+
libp2p-stream = { path = "../../protocols/stream", version = "0.3.0-alpha" }
1616
rand = "0.8"
1717
tokio = { workspace = true, features = ["full"] }
1818
tracing = { workspace = true }

misc/allow-block-list/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.4.1
1+
## 0.5.0
22

33
- Add getters & setters for the allowed/blocked peers.
44
Return a `bool` for every "insert/remove" function, informing if a change was performed.

misc/allow-block-list/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-allow-block-list"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "Allow/block list connection management for libp2p."
6-
version = "0.4.1"
6+
version = "0.5.0"
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
99
keywords = ["peer-to-peer", "libp2p", "networking"]

misc/connection-limits/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.4.1
1+
## 0.5.0
22

33
- Deprecate `void` crate.
44
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).

misc/connection-limits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-connection-limits"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "Connection limits for libp2p."
6-
version = "0.4.1"
6+
version = "0.5.0"
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
99
keywords = ["peer-to-peer", "libp2p", "networking"]

misc/memory-connection-limits/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.3.1
1+
## 0.4.0
22

33
- Deprecate `void` crate.
44
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).

misc/memory-connection-limits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-memory-connection-limits"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "Memory usage based connection limits for libp2p."
6-
version = "0.3.1"
6+
version = "0.4.0"
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
99
keywords = ["peer-to-peer", "libp2p", "networking"]

protocols/autonat/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.13.1
1+
## 0.14.0
22

33
- Verify that an incoming AutoNAT dial comes from a connected peer. See [PR 5597](https://github.com/libp2p/rust-libp2p/pull/5597).
44
- Deprecate `void` crate.

protocols/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-autonat"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "NAT and firewall detection for libp2p"
6-
version = "0.13.1"
6+
version = "0.14.0"
77
authors = [
88
"David Craven <[email protected]>",
99
"Elena Frank <[email protected]>",

protocols/ping/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.45.1
1+
## 0.46.0
22

33
- Deprecate `void` crate.
44
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).

protocols/ping/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-ping"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "Ping protocol for libp2p"
6-
version = "0.45.1"
6+
version = "0.46.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/request-response/CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
## 0.28.0
22

3+
- Deprecate `void` crate.
4+
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).
5+
36
- Add connection id to the events emitted by a request-response `Behaviour`.
47
See [PR 5719](https://github.com/libp2p/rust-libp2p/pull/5719).
58

69
- Allow configurable request and response sizes for `json` and `cbor` codec.
710
See [PR 5792](https://github.com/libp2p/rust-libp2p/pull/5792).
811

9-
## 0.27.1
10-
11-
- Deprecate `void` crate.
12-
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).
13-
1412
## 0.27.0
1513

1614
<!-- Update to libp2p-swarm v0.45.0 -->

protocols/stream/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.2.0-alpha.1
1+
## 0.3.0-alpha
22

33
- Deprecate `void` crate.
44
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).

protocols/stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libp2p-stream"
3-
version = "0.2.0-alpha.1"
3+
version = "0.3.0-alpha"
44
edition = "2021"
55
rust-version.workspace = true
66
description = "Generic stream protocols for libp2p"

swarm/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.45.2
1+
## 0.46.0
22

33
- Don't report `NewExternalAddrCandidate` for confirmed external addresses.
44
See [PR 5582](https://github.com/libp2p/rust-libp2p/pull/5582).

swarm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-swarm"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "The libp2p swarm"
6-
version = "0.45.2"
6+
version = "0.46.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

transports/quic/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
## 0.11.2
2-
3-
- Deprecate `void` crate.
4-
See [PR 5676](https://github.com/libp2p/rust-libp2p/pull/5676).
5-
61
## 0.11.1
72

83
- Update `libp2p-tls` to version `0.5.0`, see [PR 5547]

transports/quic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libp2p-quic"
3-
version = "0.11.2"
3+
version = "0.11.1"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2021"
66
rust-version = { workspace = true }

0 commit comments

Comments
 (0)