From 51832fb109f2e4b2e26cbd2aeda88d01fcc2c23c Mon Sep 17 00:00:00 2001 From: Yiannis Marangos Date: Mon, 13 Nov 2023 02:18:01 +0200 Subject: [PATCH] fix(dns): bump version After the release of 0.53.1, I noticed that new libp2p-dns was not published. This was because I forgot to increase its version and update its changelog in https://github.com/libp2p/rust-libp2p/pull/4808. This affects only users how uses `async-std` and `dns` features together. Sorry about that. Pull-Request: #4839. --- Cargo.lock | 2 +- Cargo.toml | 2 +- transports/dns/CHANGELOG.md | 5 +++++ transports/dns/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f54623dca5..cd0d090c4cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2595,7 +2595,7 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.41.0" +version = "0.41.1" dependencies = [ "async-std", "async-std-resolver", diff --git a/Cargo.toml b/Cargo.toml index 27a8214ed6f..0b9bc72d377 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ libp2p-autonat = { version = "0.12.0", path = "protocols/autonat" } libp2p-connection-limits = { version = "0.3.0", path = "misc/connection-limits" } libp2p-core = { version = "0.41.1", path = "core" } libp2p-dcutr = { version = "0.11.0", path = "protocols/dcutr" } -libp2p-dns = { version = "0.41.0", path = "transports/dns" } +libp2p-dns = { version = "0.41.1", path = "transports/dns" } libp2p-floodsub = { version = "0.44.0", path = "protocols/floodsub" } libp2p-gossipsub = { version = "0.46.0", path = "protocols/gossipsub" } libp2p-identify = { version = "0.44.0", path = "protocols/identify" } diff --git a/transports/dns/CHANGELOG.md b/transports/dns/CHANGELOG.md index 6906cc972d6..91cfbc00883 100644 --- a/transports/dns/CHANGELOG.md +++ b/transports/dns/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.41.1 + +- Add hidden API that removes unnecessary async for `async-std`. + See [PR 4808](https://github.com/libp2p/rust-libp2p/pull/4808). + ## 0.41.0 - Make `tokio::Transport::custom` and `async_std::Transport::custom` constructors infallible. diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index e318e99476a..ad9810f1b3d 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-dns" edition = "2021" rust-version = { workspace = true } description = "DNS transport implementation for libp2p" -version = "0.41.0" +version = "0.41.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"