From 049d808566f98164b24cc66cecbce0f61d9b0fb8 Mon Sep 17 00:00:00 2001 From: "Roman S. Borschel" Date: Mon, 5 Oct 2020 10:11:50 +0200 Subject: [PATCH] Update mdns version and changelog. --- Cargo.toml | 2 +- protocols/mdns/CHANGELOG.md | 4 ++++ protocols/mdns/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 87cad0c9..c5ea31c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ wasm-timer = "0.2.4" [target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] libp2p-deflate = { version = "0.22.0", path = "protocols/deflate", optional = true } libp2p-dns = { version = "0.22.0", path = "transports/dns", optional = true } -libp2p-mdns = { version = "0.22.0", path = "protocols/mdns", optional = true } +libp2p-mdns = { version = "0.22.1", path = "protocols/mdns", optional = true } libp2p-tcp = { version = "0.22.0", path = "transports/tcp", optional = true } libp2p-websocket = { version = "0.23.1", path = "transports/websocket", optional = true } diff --git a/protocols/mdns/CHANGELOG.md b/protocols/mdns/CHANGELOG.md index b63c6994..dde9a19d 100644 --- a/protocols/mdns/CHANGELOG.md +++ b/protocols/mdns/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.1 [unreleased] + +- Double receive buffer to 4KiB. [PR 1779](https://github.com/libp2p/rust-libp2p/pull/1779/files). + # 0.22.0 [2020-09-09] - Update `libp2p-swarm` and `libp2p-core`. diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 9ddee284..95805b82 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libp2p-mdns" edition = "2018" -version = "0.22.0" +version = "0.22.1" description = "Implementation of the libp2p mDNS discovery method" authors = ["Parity Technologies "] license = "MIT"