Skip to content

Commit 66fc5a6

Browse files
committed
Fixed semvers and change logs
1 parent 1b4ae74 commit 66fc5a6

File tree

30 files changed

+59
-60
lines changed

30 files changed

+59
-60
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -78,43 +78,43 @@ libp2p = { version = "0.56.1", path = "libp2p" }
7878
libp2p-allow-block-list = { version = "0.6.0", path = "misc/allow-block-list" }
7979
libp2p-autonat = { version = "0.15.0", path = "protocols/autonat" }
8080
libp2p-connection-limits = { version = "0.6.0", path = "misc/connection-limits" }
81-
libp2p-core = { version = "0.43.1", path = "core" }
81+
libp2p-core = { version = "0.44.0", path = "core" }
8282
libp2p-dcutr = { version = "0.14.0", path = "protocols/dcutr" }
83-
libp2p-dns = { version = "0.44.0", path = "transports/dns" }
83+
libp2p-dns = { version = "0.45.0", path = "transports/dns" }
8484
libp2p-floodsub = { version = "0.47.0", path = "protocols/floodsub" }
8585
libp2p-gossipsub = { version = "0.50.0", path = "protocols/gossipsub" }
8686
libp2p-identify = { version = "0.47.0", path = "protocols/identify" }
8787
libp2p-identity = { version = "0.2.12" }
8888
libp2p-kad = { version = "0.49.0", path = "protocols/kad" }
8989
libp2p-mdns = { version = "0.48.0", path = "protocols/mdns" }
9090
libp2p-memory-connection-limits = { version = "0.5.0", path = "misc/memory-connection-limits" }
91-
libp2p-metrics = { version = "0.17.1", path = "misc/metrics" }
91+
libp2p-metrics = { version = "0.17.2", path = "misc/metrics" }
9292
libp2p-mplex = { version = "0.43.1", path = "muxers/mplex" }
9393
libp2p-noise = { version = "0.46.1", path = "transports/noise" }
9494
libp2p-peer-store = { version = "0.1.0", path = "misc/peer-store" }
9595
libp2p-perf = { version = "0.4.0", path = "protocols/perf" }
9696
libp2p-ping = { version = "0.47.0", path = "protocols/ping" }
9797
libp2p-plaintext = { version = "0.43.0", path = "transports/plaintext" }
9898
libp2p-pnet = { version = "0.26.0", path = "transports/pnet" }
99-
libp2p-quic = { version = "0.13.0", path = "transports/quic" }
100-
libp2p-relay = { version = "0.21.1", path = "protocols/relay" }
99+
libp2p-quic = { version = "0.14.0", path = "transports/quic" }
100+
libp2p-relay = { version = "0.22.0", path = "protocols/relay" }
101101
libp2p-rendezvous = { version = "0.17.0", path = "protocols/rendezvous" }
102102
libp2p-request-response = { version = "0.29.0", path = "protocols/request-response" }
103103
libp2p-server = { version = "0.12.7", path = "misc/server" }
104104
libp2p-stream = { version = "0.4.0-alpha", path = "protocols/stream" }
105-
libp2p-swarm = { version = "0.47.0", path = "swarm" }
105+
libp2p-swarm = { version = "0.47.1", path = "swarm" }
106106
libp2p-swarm-derive = { version = "=0.35.1", 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.
107107
libp2p-swarm-test = { version = "0.6.0", path = "swarm-test" }
108-
libp2p-tcp = { version = "0.44.0", path = "transports/tcp" }
108+
libp2p-tcp = { version = "0.45.0", path = "transports/tcp" }
109109
libp2p-tls = { version = "0.6.2", path = "transports/tls" }
110-
libp2p-uds = { version = "0.43.1", path = "transports/uds" }
110+
libp2p-uds = { version = "0.44.0", path = "transports/uds" }
111111
libp2p-upnp = { version = "0.6.0", path = "protocols/upnp" }
112-
libp2p-webrtc = { version = "0.9.0-alpha.2", path = "transports/webrtc" }
112+
libp2p-webrtc = { version = "0.10.0-alpha", path = "transports/webrtc" }
113113
libp2p-webrtc-utils = { version = "0.4.0", path = "misc/webrtc-utils" }
114-
libp2p-webrtc-websys = { version = "0.4.0", path = "transports/webrtc-websys" }
115-
libp2p-websocket = { version = "0.45.2", path = "transports/websocket" }
116-
libp2p-websocket-websys = { version = "0.5.0", path = "transports/websocket-websys" }
117-
libp2p-webtransport-websys = { version = "0.5.2", path = "transports/webtransport-websys" }
114+
libp2p-webrtc-websys = { version = "0.5.0", path = "transports/webrtc-websys" }
115+
libp2p-websocket = { version = "0.46.0", path = "transports/websocket" }
116+
libp2p-websocket-websys = { version = "0.6.0", path = "transports/websocket-websys" }
117+
libp2p-webtransport-websys = { version = "0.6.0", path = "transports/webtransport-websys" }
118118
libp2p-yamux = { version = "0.47.0", path = "muxers/yamux" }
119119

120120
# External dependencies

core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- Updated `Transport::Dial` future for outbound connections, which on success now yields:
33
- `Transport::Output` as a handle to the established data stream,
44
- `Transport::PortUse` as the port reuse policy used while creating the outbound connection.
5-
See [PR]
5+
See [PR 6187](https://github.com/libp2p/rust-libp2p/pull/6187)
66

77
## 0.43.1
88
- Remove `once_cell` dependency.

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.workspace = true
44
rust-version = { workspace = true }
55
description = "Core traits and structs of libp2p"
6-
version = "0.43.1"
6+
version = "0.44.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

libp2p/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## 0.56.2
22

33
- changes to `SelectMuxerUpgrade` and `SelectSecurityUpgrade` due to changes in the `Transport::Dial` future
4-
which returns PortUse policy.
5-
See [PR ]
4+
which returns PortUse policy. Using appropriate `EitherUpgradeFuture` as returned future for connection upgrades.
5+
See [PR 6187](https://github.com/libp2p/rust-libp2p/pull/6187)
66

77
## 0.56.1
88

libp2p/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p"
33
edition.workspace = true
44
rust-version = { workspace = true }
55
description = "Peer-to-peer networking library"
6-
version = "0.56.1"
6+
version = "0.56.2"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
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,7 +1,7 @@
11
## 0.17.2
22

33
- changes to transport implementation due to changes in the `Trasnport::Dial` future which returns PortUse policy.
4-
See [PR ]
4+
See [PR 6187](https://github.com/libp2p/rust-libp2p/pull/6187)
55

66
## 0.17.1
77

misc/metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-metrics"
33
edition.workspace = true
44
rust-version = { workspace = true }
55
description = "Metrics for libp2p"
6-
version = "0.17.1"
6+
version = "0.17.2"
77
authors = ["Max Inden <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/relay/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
## 0.21.2
1+
## 0.22.0
22

33
- changes to `priv_client` due to changes in the `Trasnport::Dial` future which returns PortUse policy.
4-
See [PR ]
4+
See [PR 6187](https://github.com/libp2p/rust-libp2p/pull/6187)
55

66
## 0.21.1
77

protocols/relay/Cargo.toml

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

0 commit comments

Comments
 (0)