Skip to content

Commit 927428f

Browse files
authored
chore: Fixes versions and changelogs
Pull-Request: #5455.
1 parent 3b61e57 commit 927428f

File tree

14 files changed

+39
-24
lines changed

14 files changed

+39
-24
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,16 @@ libp2p-mplex = { version = "0.41.0", path = "muxers/mplex" }
9393
libp2p-muxer-test-harness = { path = "muxers/test-harness" }
9494
libp2p-noise = { version = "0.44.0", path = "transports/noise" }
9595
libp2p-perf = { version = "0.3.1", path = "protocols/perf" }
96-
libp2p-ping = { version = "0.44.1", path = "protocols/ping" }
96+
libp2p-ping = { version = "0.44.2", path = "protocols/ping" }
9797
libp2p-plaintext = { version = "0.41.0", path = "transports/plaintext" }
9898
libp2p-pnet = { version = "0.24.0", path = "transports/pnet" }
9999
libp2p-quic = { version = "0.10.3", path = "transports/quic" }
100100
libp2p-relay = { version = "0.17.3", path = "protocols/relay" }
101101
libp2p-rendezvous = { version = "0.14.1", path = "protocols/rendezvous" }
102-
libp2p-request-response = { version = "0.26.3", path = "protocols/request-response" }
102+
libp2p-request-response = { version = "0.26.4", path = "protocols/request-response" }
103103
libp2p-server = { version = "0.12.7", path = "misc/server" }
104104
libp2p-stream = { version = "0.1.0-alpha.1", path = "protocols/stream" }
105-
libp2p-swarm = { version = "0.44.2", path = "swarm" }
105+
libp2p-swarm = { version = "0.44.3", path = "swarm" }
106106
libp2p-swarm-derive = { version = "=0.34.2", 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.3.0", path = "swarm-test" }
108108
libp2p-tcp = { version = "0.41.1", path = "transports/tcp" }
@@ -112,10 +112,10 @@ libp2p-upnp = { version = "0.2.2", path = "protocols/upnp" }
112112
libp2p-webrtc = { version = "0.7.1-alpha", path = "transports/webrtc" }
113113
libp2p-webrtc-utils = { version = "0.2.1", path = "misc/webrtc-utils" }
114114
libp2p-webrtc-websys = { version = "0.3.0-alpha", path = "transports/webrtc-websys" }
115-
libp2p-websocket = { version = "0.43.0", path = "transports/websocket" }
115+
libp2p-websocket = { version = "0.43.1", path = "transports/websocket" }
116116
libp2p-websocket-websys = { version = "0.3.2", path = "transports/websocket-websys" }
117117
libp2p-webtransport-websys = { version = "0.3.0", path = "transports/webtransport-websys" }
118-
libp2p-yamux = { version = "0.45.1", path = "muxers/yamux" }
118+
libp2p-yamux = { version = "0.45.2", path = "muxers/yamux" }
119119
multiaddr = "0.18.1"
120120
multihash = "0.19.1"
121121
multistream-select = { version = "0.13.0", path = "misc/multistream-select" }

libp2p/CHANGELOG.md

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

33
- Update individual crates.
44
- Update to [`libp2p-kad` `v0.46.0`](protocols/kad/CHANGELOG.md#0460).

muxers/yamux/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.45.2
2+
3+
- Update `yamux` to version `v0.13.3`.`
4+
15
## 0.45.1
26

37
- Deprecate `WindowUpdateMode::on_receive`.

muxers/yamux/Cargo.toml

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

protocols/kad/CHANGELOG.md

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

33
- Changed `FIND_NODE` response: now includes a list of closest peers when querying the recipient peer ID. Previously, this request yielded an empty response.
44
See [PR 5270](https://github.com/libp2p/rust-libp2p/pull/5270)

protocols/ping/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
## 0.44.1 - unreleased
1+
## 0.44.2
2+
3+
- Use `web-time` instead of `instant`.
4+
See [PR 5347](https://github.com/libp2p/rust-libp2p/pull/5347).
5+
6+
## 0.44.1
27

38
- Impose `Sync` on `ping::Failure::Other`.
49
`ping::Event` can now be shared between threads.
510
See [PR 5250]
611

7-
- Use `web-time` instead of `instant`.
8-
See [PR 5347](https://github.com/libp2p/rust-libp2p/pull/5347).
912

1013
[PR 5250]: https://github.com/libp2p/rust-libp2p/pull/5250
1114

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.44.1"
6+
version = "0.44.2"
77
authors = ["Parity Technologies <admin@parity.io>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/request-response/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.26.4
2+
3+
- Use `web-time` instead of `instant`.
4+
See [PR 5347](https://github.com/libp2p/rust-libp2p/pull/5347).
5+
16
## 0.26.3
27

38
- Report failure when streams are at capacity.
@@ -10,8 +15,6 @@
1015

1116
- Deprecate `Behaviour::add_address` in favor of `Swarm::add_peer_address`.
1217
See [PR 4371](https://github.com/libp2p/rust-libp2p/pull/4371).
13-
- Use `web-time` instead of `instant`.
14-
See [PR 5347](https://github.com/libp2p/rust-libp2p/pull/5347).
1518

1619
## 0.26.1
1720

protocols/request-response/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-request-response"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "Generic Request/Response Protocols"
6-
version = "0.26.3"
6+
version = "0.26.4"
77
authors = ["Parity Technologies <admin@parity.io>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

0 commit comments

Comments
 (0)