From c2106db78e6af1fc78f33c1f780498c4c5f59a70 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Mon, 20 Jun 2022 19:09:14 +0200 Subject: [PATCH] Update changelog to match new implementation --- core/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 5753cba656d..7bea0f3f35a 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -3,7 +3,7 @@ - Introduce `StreamMuxerEvent::map_inbound_stream`. See [PR 2691]. - Remove `{read,write,flush,shutdown,destroy}_substream` functions from `StreamMuxer` trait in favor of forcing `StreamMuxer::Substream` to implement `AsyncRead + AsyncWrite`. See [PR 2707]. -- Remove `Into` bound from `StreamMuxer::Error`. See [PR 2710]. +- Replace `Into` bound on `StreamMuxer::Error` with `std::error::Error`. See [PR 2710]. [PR 2691]: https://github.com/libp2p/rust-libp2p/pull/2691 [PR 2707]: https://github.com/libp2p/rust-libp2p/pull/2707