diff --git a/CHANGELOG.md b/CHANGELOG.md index 9415d741e20..96d7952bd63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,7 +45,8 @@ - Use `libp2p-swarm-derive`, the former `libp2p-core-derive`. -- Update `libp2p-gossipsub`, `libp2p-request-response` and `libp2p-swarm`. +- Update `libp2p-gossipsub`, `libp2p-mdns`, `libp2p-request-response`, + `libp2p-swarm` and `libp2p-tcp`. ## Version 0.34.0 [2021-01-12] diff --git a/Cargo.toml b/Cargo.toml index 9b820a59110..cfa925d0c91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,8 +86,8 @@ wasm-timer = "0.2.4" [target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] libp2p-deflate = { version = "0.27.1", path = "transports/deflate", optional = true } libp2p-dns = { version = "0.27.0", path = "transports/dns", optional = true } -libp2p-mdns = { version = "0.28.0", path = "protocols/mdns", optional = true } -libp2p-tcp = { version = "0.27.0", path = "transports/tcp", optional = true } +libp2p-mdns = { version = "0.28.1", path = "protocols/mdns", optional = true } +libp2p-tcp = { version = "0.27.1", path = "transports/tcp", optional = true } libp2p-websocket = { version = "0.28.0", path = "transports/websocket", optional = true } [dev-dependencies] diff --git a/protocols/mdns/CHANGELOG.md b/protocols/mdns/CHANGELOG.md index 2307bc2e062..bd2a80624dc 100644 --- a/protocols/mdns/CHANGELOG.md +++ b/protocols/mdns/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.28.1 [unreleased] + +- Update dependencies. + # 0.28.0 [2021-01-12] - Update dependencies. diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 11cef7c3dd2..cf488115cfd 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libp2p-mdns" edition = "2018" -version = "0.28.0" +version = "0.28.1" description = "Implementation of the libp2p mDNS discovery method" authors = ["Parity Technologies "] license = "MIT" @@ -14,7 +14,7 @@ async-io = "1.3.0" data-encoding = "2.3.1" dns-parser = "0.8.0" futures = "0.3.8" -if-watch = "0.1.6" +if-watch = "0.1.8" lazy_static = "1.4.0" libp2p-core = { version = "0.27.0", path = "../../core" } libp2p-swarm = { version = "0.27.0", path = "../../swarm" } diff --git a/transports/tcp/CHANGELOG.md b/transports/tcp/CHANGELOG.md index 005f31b64de..04899ba7a02 100644 --- a/transports/tcp/CHANGELOG.md +++ b/transports/tcp/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.27.1 [unreleased] + +- Update dependencies. + # 0.27.0 [2021-01-12] - Add support for port reuse and (re)add transport-specific diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 1a01836b383..1da908bab30 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-tcp" edition = "2018" description = "TCP/IP transport protocol for libp2p" -version = "0.27.0" +version = "0.27.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] async-io-crate = { package = "async-io", version = "1.2.0", optional = true } futures = "0.3.8" futures-timer = "3.0" -if-watch = { version = "0.1.4", optional = true } +if-watch = { version = "0.1.8", optional = true } if-addrs = { version = "0.6.4", optional = true } ipnet = "2.0.0" libc = "0.2.80"