diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb3882e..cf6f25df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,9 +23,10 @@ - [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md) - [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md) -# Version 0.24.0 [unreleased] +# Version 0.24.0 [2020-08-18] -- Update `libp2p-core`, `libp2p-swarm` and dependent crates. +- Update `libp2p-core`, `libp2p-gossipsub`, `libp2p-kad`, `libp2p-mdns`, + `libp2p-ping`, `libp2p-request-response`, `libp2p-swarm` and dependent crates. # Version 0.23.0 (2020-08-03) diff --git a/Cargo.toml b/Cargo.toml index c217d138..4c9564ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.23.0" +version = "0.24.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 94d29156..04e48acf 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Add `transport::Builder::multiplex_ext` for further customisation during `StreamMuxer` creation. [PR 1691](https://github.com/libp2p/rust-libp2p/pull/1691). diff --git a/muxers/mplex/CHANGELOG.md b/muxers/mplex/CHANGELOG.md index 59db446b..2f2ce748 100644 --- a/muxers/mplex/CHANGELOG.md +++ b/muxers/mplex/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/muxers/yamux/CHANGELOG.md b/muxers/yamux/CHANGELOG.md index d562ac9e..fc4d312b 100644 --- a/muxers/yamux/CHANGELOG.md +++ b/muxers/yamux/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/deflate/CHANGELOG.md b/protocols/deflate/CHANGELOG.md index 7d1fdaf1..1419b1ad 100644 --- a/protocols/deflate/CHANGELOG.md +++ b/protocols/deflate/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/floodsub/CHANGELOG.md b/protocols/floodsub/CHANGELOG.md index 8b5db418..0d857fb7 100644 --- a/protocols/floodsub/CHANGELOG.md +++ b/protocols/floodsub/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` and `libp2p-swarm` dependency. diff --git a/protocols/gossipsub/CHANGELOG.md b/protocols/gossipsub/CHANGELOG.md index fe700c63..c6936c69 100644 --- a/protocols/gossipsub/CHANGELOG.md +++ b/protocols/gossipsub/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Add public API to list topics and peers. [PR 1677](https://github.com/libp2p/rust-libp2p/pull/1677). diff --git a/protocols/identify/CHANGELOG.md b/protocols/identify/CHANGELOG.md index 1d8e9ad6..9c87a614 100644 --- a/protocols/identify/CHANGELOG.md +++ b/protocols/identify/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` and `libp2p-swarm` dependencies. diff --git a/protocols/kad/CHANGELOG.md b/protocols/kad/CHANGELOG.md index ace3fa40..4284ca5b 100644 --- a/protocols/kad/CHANGELOG.md +++ b/protocols/kad/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.22.0 [unreleased] +# 0.22.0 [2020-08-18] - Store addresses in provider records. See [PR 1708](https://github.com/libp2p/rust-libp2p/pull/1708). diff --git a/protocols/mdns/CHANGELOG.md b/protocols/mdns/CHANGELOG.md index 1898bbe6..071d80a0 100644 --- a/protocols/mdns/CHANGELOG.md +++ b/protocols/mdns/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` and `libp2p-swarm` dependencies. diff --git a/protocols/noise/CHANGELOG.md b/protocols/noise/CHANGELOG.md index 0eb2c757..f8c2bf67 100644 --- a/protocols/noise/CHANGELOG.md +++ b/protocols/noise/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.23.0 [unreleased] +# 0.23.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/ping/CHANGELOG.md b/protocols/ping/CHANGELOG.md index 3fb1ef6d..85922bc1 100644 --- a/protocols/ping/CHANGELOG.md +++ b/protocols/ping/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Refactor the ping protocol for conformity by (re)using a single substream for outbound pings, addressing diff --git a/protocols/plaintext/CHANGELOG.md b/protocols/plaintext/CHANGELOG.md index 0cc1cfc5..b950e2d7 100644 --- a/protocols/plaintext/CHANGELOG.md +++ b/protocols/plaintext/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index 8de90b3c..5bf3fa10 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.2.0 // unreleased +# 0.2.0 [2020-08-18] - Fixed connection keep-alive, permitting connections to close due to inactivity. diff --git a/protocols/secio/CHANGELOG.md b/protocols/secio/CHANGELOG.md index 7e0942d7..631df58e 100644 --- a/protocols/secio/CHANGELOG.md +++ b/protocols/secio/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index e0dbbcb7..f1bf0889 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Add missing delegation calls in some `ProtocolsHandler` wrappers. See [PR 1710](https://github.com/libp2p/rust-libp2p/pull/1710). diff --git a/transports/dns/CHANGELOG.md b/transports/dns/CHANGELOG.md index 6df94406..98f7bc91 100644 --- a/transports/dns/CHANGELOG.md +++ b/transports/dns/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/transports/tcp/CHANGELOG.md b/transports/tcp/CHANGELOG.md index 7d1fdaf1..1419b1ad 100644 --- a/transports/tcp/CHANGELOG.md +++ b/transports/tcp/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/transports/uds/CHANGELOG.md b/transports/uds/CHANGELOG.md index d029bf22..3d03d2ca 100644 --- a/transports/uds/CHANGELOG.md +++ b/transports/uds/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Update `libp2p-core` dependency. diff --git a/transports/wasm-ext/CHANGELOG.md b/transports/wasm-ext/CHANGELOG.md index 3e3b56a4..79cd0e16 100644 --- a/transports/wasm-ext/CHANGELOG.md +++ b/transports/wasm-ext/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.21.0 [unreleased] +# 0.21.0 [2020-08-18] - Update `libp2p-core` dependency. diff --git a/transports/websocket/CHANGELOG.md b/transports/websocket/CHANGELOG.md index 0ff31f62..d51d12f1 100644 --- a/transports/websocket/CHANGELOG.md +++ b/transports/websocket/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.22.0 [unreleased] +# 0.22.0 [2020-08-18] - Bump `libp2p-core` dependency.