Skip to content

Commit 74e3157

Browse files
authored
chore: prepare v0.53.0
Pull-Request: #4796.
1 parent 402212c commit 74e3157

File tree

36 files changed

+50
-50
lines changed

36 files changed

+50
-50
lines changed

core/CHANGELOG.md

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

33
- Remove blanket-impl of `{In,Out}boundUpgrade` for `{In,Out}boundConnectionUpgrade`.
44
See [PR 4695](https://github.com/libp2p/rust-libp2p/pull/4695).

libp2p/CHANGELOG.md

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

33
- Raise MSRV to 1.73.
44
See [PR 4692](https://github.com/libp2p/rust-libp2p/pull/4692).

misc/allow-block-list/CHANGELOG.md

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

33

4-
## 0.2.0
4+
## 0.2.0
55

66
- Raise MSRV to 1.65.
77
See [PR 3715].

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.3.0 - unreleased
1+
## 0.3.0
22

33

44
## 0.2.1

misc/futures-bounded/CHANGELOG.md

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

33
- Add `.len()` getter to `FuturesMap`, `FuturesSet`, `StreamMap` and `StreamSet`.
44
See [PR 4745](https://github.com/libp2p/rust-lib2pp/pulls/4745).

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.2.0 - unreleased
1+
## 0.2.0
22

33

44
## 0.1.0

misc/metrics/CHANGELOG.md

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

33
- Add metrics for `SwarmEvent::{NewExternalAddrCandidate,ExternalAddrConfirmed,ExternalAddrExpired}`.
44
See [PR 4721](https://github.com/libp2p/rust-libp2p/pull/4721).

muxers/mplex/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## 0.41.0 - unreleased
1+
## 0.41.0
22

33
- Migrate to `{In,Out}boundConnectionUpgrade` traits.
44
See [PR 4695](https://github.com/libp2p/rust-libp2p/pull/4695).
55

6-
## 0.40.0
6+
## 0.40.0
77

88
- Raise MSRV to 1.65.
99
See [PR 3715].

muxers/yamux/CHANGELOG.md

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

33
- Migrate to `{In,Out}boundConnectionUpgrade` traits.
44
See [PR 4695](https://github.com/libp2p/rust-libp2p/pull/4695).

protocols/autonat/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
## 0.12.0 - unreleased
1+
## 0.12.0
22

33
- Remove `Clone`, `PartialEq` and `Eq` implementations on `Event` and its sub-structs.
44
The `Event` also contains errors which are not clonable or comparable.
55
See [PR 3914](https://github.com/libp2p/rust-libp2p/pull/3914).
66

7-
## 0.11.0
7+
## 0.11.0
88

99
- Raise MSRV to 1.65.
1010
See [PR 3715].

protocols/dcutr/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.11.0 - unreleased
1+
## 0.11.0
22

33
- Add `ConnectionId` to `Event::DirectConnectionUpgradeSucceeded` and `Event::DirectConnectionUpgradeFailed`.
44
See [PR 4558](https://github.com/libp2p/rust-libp2p/pull/4558).
@@ -7,9 +7,9 @@
77
See [PR 4624](https://github.com/libp2p/rust-libp2p/pull/4624).
88
- Simplify public API.
99
We now only emit a single event: whether the hole-punch was successful or not.
10-
See [PR XXXX](https://github.com/libp2p/rust-libp2p/pull/XXXX).
10+
See [PR 4749](https://github.com/libp2p/rust-libp2p/pull/4749).
1111

12-
## 0.10.0
12+
## 0.10.0
1313

1414
- Raise MSRV to 1.65.
1515
See [PR 3715].

protocols/floodsub/CHANGELOG.md

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

33
- Change publish to require `data: impl Into<Bytes>` to internally avoid any costly cloning / allocation.
44
See [PR 4754](https://github.com/libp2p/rust-libp2p/pull/4754).

protocols/gossipsub/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
- Remove `fast_message_id_fn` mechanism from `Config`.
44
See [PR 4285](https://github.com/libp2p/rust-libp2p/pull/4285).

protocols/identify/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.44.0 - unreleased
1+
## 0.44.0
22

33
- Add `Info` to the `libp2p-identify::Event::Pushed` to report pushed info.
44
See [PR 4527](https://github.com/libp2p/rust-libp2p/pull/4527)
@@ -7,7 +7,7 @@
77
See [PR 4735](https://github.com/libp2p/rust-libp2p/pull/4735)
88
- Don't repeatedly report the same observed address as a `NewExternalAddrCandidate`.
99
Instead, only report each observed address once per connection.
10-
This allows users to probabilistically deem an address as external if it gets reported as a candidate repeatedly.
10+
This allows users to probabilistically deem an address as external if it gets reported as a candidate repeatedly.
1111
See [PR 4721](https://github.com/libp2p/rust-libp2p/pull/4721).
1212

1313
## 0.43.1

protocols/kad/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.45.0 - unreleased
1+
## 0.45.0
22

33
- Remove deprecated `kad::Config::set_connection_idle_timeout` in favor of `SwarmBuilder::idle_connection_timeout`.
44
See [PR 4659](https://github.com/libp2p/rust-libp2p/pull/4659).
@@ -10,7 +10,7 @@
1010
See [PR 4698](https://github.com/libp2p/rust-libp2p/pull/4698).
1111
- Remove previously deprecated type-aliases.
1212
Users should follow the convention of importing the `libp2p::kad` module and referring to symbols as `kad::Behaviour` etc.
13-
See [PR 4733](https://github.com/libp2p/rust-libp2p/pull/4733).
13+
See [PR 4733](https://github.com/libp2p/rust-libp2p/pull/4733).
1414

1515
## 0.44.6
1616

protocols/mdns/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
## 0.45.0 - unreleased
1+
## 0.45.0
22

33
- Don't perform IO in `Behaviour::poll`.
44
See [PR 4623](https://github.com/libp2p/rust-libp2p/pull/4623).
55

6-
## 0.44.0
6+
## 0.44.0
77

88
- Change `mdns::Event` to hold `Vec` and remove `DiscoveredAddrsIter` and `ExpiredAddrsIter`.
99
See [PR 3621].
10-
10+
1111
- Raise MSRV to 1.65.
1212
See [PR 3715].
1313
- Remove deprecated `Mdns` prefixed items. See [PR 3699].

protocols/perf/CHANGELOG.md

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

33
- Continuously measure on single connection (iperf-style).
44
See https://github.com/libp2p/test-plans/issues/261 for high level overview.

protocols/ping/CHANGELOG.md

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

33

44
## 0.43.1

protocols/relay/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.17.0 - unreleased
1+
## 0.17.0
22

33
- Don't close connections on protocol failures within the relay-server.
44
To achieve this, error handling was restructured:
@@ -10,15 +10,15 @@
1010
- Fix a rare race condition when making a reservation on a relay that could lead to a failed reservation.
1111
See [PR 4747](https://github.com/libp2p/rust-lib2pp/pulls/4747).
1212
- Propagate errors of relay client to the listener / dialer.
13-
A failed reservation will now appear as `SwarmEvent::ListenerClosed` with the `ListenerId` of the corresponding `Swarm::listen_on` call.
13+
A failed reservation will now appear as `SwarmEvent::ListenerClosed` with the `ListenerId` of the corresponding `Swarm::listen_on` call.
1414
A failed circuit request will now appear as `SwarmEvent::OutgoingConnectionError` with the `ConnectionId` of the corresponding `Swarm::dial` call.
1515
Lastly, a failed reservation or circuit request will **no longer** close the underlying relay connection.
1616
As a result, we remove the following enum variants:
1717
- `relay::client::Event::ReservationReqFailed`
1818
- `relay::client::Event::OutboundCircuitReqFailed`
1919
- `relay::client::Event::InboundCircuitReqDenied`
2020
- `relay::client::Event::InboundCircuitReqDenyFailed`
21-
21+
2222
See [PR 4745](https://github.com/libp2p/rust-lib2pp/pulls/4745).
2323

2424
## 0.16.2

protocols/rendezvous/CHANGELOG.md

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

33

44
## 0.13.1

protocols/request-response/CHANGELOG.md

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

33
- Remove `request_response::Config::set_connection_keep_alive` in favor of `SwarmBuilder::idle_connection_timeout`.
44
See [PR 4679](https://github.com/libp2p/rust-libp2p/pull/4679).

protocols/upnp/CHANGELOG.md

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

33

44
## 0.1.1

swarm-derive/CHANGELOG.md

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

33
- Adapt to interface changes in `libp2p-swarm`.
44
See [PR 4706](https://github.com/libp2p/rust-libp2p/pull/4076).

swarm-test/CHANGELOG.md

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

33

4-
## 0.2.0
4+
## 0.2.0
55

66
- Raise MSRV to 1.65.
77
See [PR 3715].

swarm/CHANGELOG.md

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

33
- Add `#[non_exhaustive]` to `FromSwarm`, `ToSwarm`, `SwarmEvent`, `ConnectionHandlerEvent`, `ConnectionEvent`.
44
See [PR 4581](https://github.com/libp2p/rust-libp2p/pull/4581).

transports/dns/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## 0.41.0 - unreleased
1+
## 0.41.0
22

33
- Make `tokio::Transport::custom` and `async_std::Transport::custom` constructors infallible.
44
See [PR 4464](https://github.com/libp2p/rust-libp2p/pull/4464).
55
- Remove deprecated type-aliases.
6-
See [PR 4739](https://github.com/libp2p/rust-libp2p/pull/4739).
6+
See [PR 4739](https://github.com/libp2p/rust-libp2p/pull/4739).
77
- Migrate to the `hickory-dns` project which has rebranded from `trust-dns`.
88
We also remove the `tokio-dns-over-rustls` and `tokio-dns-over-https-rustls` features.
99
Users should activate these features themselves on `hickory-resolver` if so desired.

transports/noise/CHANGELOG.md

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

33
- Migrate to `{In,Out}boundConnectionUpgrade` traits.
44
See [PR 4695](https://github.com/libp2p/rust-libp2p/pull/4695).

transports/plaintext/CHANGELOG.md

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

33
- Migrate to `{In,Out}boundConnectionUpgrade` traits.
44
See [PR 4695](https://github.com/libp2p/rust-libp2p/pull/4695).

transports/pnet/CHANGELOG.md

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

33

44
## 0.23.1

transports/quic/CHANGELOG.md

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

33
- Improve hole-punch timing.
44
This should improve success rates for hole-punching QUIC connections.

transports/tcp/CHANGELOG.md

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

33

44
## 0.40.1

transports/tls/CHANGELOG.md

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

33
- Migrate to `{In,Out}boundConnectionUpgrade` traits.
44
See [PR 4695](https://github.com/libp2p/rust-libp2p/pull/4695).

transports/uds/CHANGELOG.md

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

33

4-
## 0.39.0
4+
## 0.39.0
55

66
- Raise MSRV to 1.65.
77
See [PR 3715].

transports/websocket-websys/CHANGELOG.md

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

33

44
## 0.2.0

transports/websocket/CHANGELOG.md

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

33

44
## 0.42.1

transports/webtransport-websys/CHANGELOG.md

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

33

44
## 0.1.0

0 commit comments

Comments
 (0)