From 66c2319230f77a8f3d5b1efa7ccfadfcc5d5df0c Mon Sep 17 00:00:00 2001 From: Max Inden Date: Tue, 19 Jul 2022 08:57:50 +0200 Subject: [PATCH 1/2] transports/tcp: Bump to v0.35.0 (#2760) Follow up on https://github.com/libp2p/rust-libp2p/pull/2724/. Given that libp2p-core is bumped to v0.35.0, libp2p-tcp needs to be bumped as well. --- Cargo.toml | 2 +- transports/tcp/CHANGELOG.md | 4 ++++ transports/tcp/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9e6d6ea4786a..f716d822552d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -107,7 +107,7 @@ smallvec = "1.6.1" libp2p-deflate = { version = "0.35.0", path = "transports/deflate", optional = true } libp2p-dns = { version = "0.35.0", path = "transports/dns", optional = true, default-features = false } libp2p-mdns = { version = "0.39.0", path = "protocols/mdns", optional = true } -libp2p-tcp = { version = "0.34.0", path = "transports/tcp", default-features = false, optional = true } +libp2p-tcp = { version = "0.35.0", path = "transports/tcp", default-features = false, optional = true } libp2p-websocket = { version = "0.37.0", path = "transports/websocket", optional = true } [target.'cfg(not(target_os = "unknown"))'.dependencies] diff --git a/transports/tcp/CHANGELOG.md b/transports/tcp/CHANGELOG.md index 4a9d0245b2bf..5d860270be95 100644 --- a/transports/tcp/CHANGELOG.md +++ b/transports/tcp/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.35.0 [unreleased] + +- Update to `libp2p-core` `v0.35.0`. + # 0.34.0 - Update to `libp2p-core` `v0.34.0`. diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 0b86689fa328..22969c060ffc 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-tcp" edition = "2021" rust-version = "1.56.1" description = "TCP/IP transport protocol for libp2p" -version = "0.34.0" +version = "0.35.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" From c8066df232e16f1d0908c6dfda91a366d7d21028 Mon Sep 17 00:00:00 2001 From: tgmichel Date: Tue, 19 Jul 2022 09:14:00 +0200 Subject: [PATCH 2/2] *: Update to `if-watch` `1.1.1` (#2754) --- protocols/mdns/CHANGELOG.md | 1 + protocols/mdns/Cargo.toml | 2 +- transports/tcp/CHANGELOG.md | 2 ++ transports/tcp/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/protocols/mdns/CHANGELOG.md b/protocols/mdns/CHANGELOG.md index 1bf4be8f6ae8..e3b37be4c601 100644 --- a/protocols/mdns/CHANGELOG.md +++ b/protocols/mdns/CHANGELOG.md @@ -1,6 +1,7 @@ # 0.39.0 [unreleased] - Update to `libp2p-swarm` `v0.38.0`. +- Update to `if-watch` `v1.1.1`. - Update to `libp2p-core` `v0.35.0`. diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index eb32b7e9426d..bb060c9ed1f5 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -15,7 +15,7 @@ async-io = "1.3.1" data-encoding = "2.3.2" dns-parser = "0.8.0" futures = "0.3.13" -if-watch = "1.0.0" +if-watch = "1.1.1" lazy_static = "1.4.0" libp2p-core = { version = "0.35.0", path = "../../core", default-features = false } libp2p-swarm = { version = "0.38.0", path = "../../swarm" } diff --git a/transports/tcp/CHANGELOG.md b/transports/tcp/CHANGELOG.md index 5d860270be95..bf7a5e0dabaf 100644 --- a/transports/tcp/CHANGELOG.md +++ b/transports/tcp/CHANGELOG.md @@ -2,6 +2,8 @@ - Update to `libp2p-core` `v0.35.0`. +- Update to `if-watch` `v1.1.1`. + # 0.34.0 - Update to `libp2p-core` `v0.34.0`. diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 22969c060ffc..7273db58c51a 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -14,7 +14,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 = "1.0.0", optional = true } +if-watch = { version = "1.1.1", optional = true } if-addrs = { version = "0.7.0", optional = true } ipnet = "2.0.0" libc = "0.2.80"