Skip to content

Commit 51832fb

Browse files
authored
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 #4808. This affects only users how uses `async-std` and `dns` features together. Sorry about that. Pull-Request: #4839.
1 parent 7f4ba69 commit 51832fb

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ libp2p-autonat = { version = "0.12.0", path = "protocols/autonat" }
7777
libp2p-connection-limits = { version = "0.3.0", path = "misc/connection-limits" }
7878
libp2p-core = { version = "0.41.1", path = "core" }
7979
libp2p-dcutr = { version = "0.11.0", path = "protocols/dcutr" }
80-
libp2p-dns = { version = "0.41.0", path = "transports/dns" }
80+
libp2p-dns = { version = "0.41.1", path = "transports/dns" }
8181
libp2p-floodsub = { version = "0.44.0", path = "protocols/floodsub" }
8282
libp2p-gossipsub = { version = "0.46.0", path = "protocols/gossipsub" }
8383
libp2p-identify = { version = "0.44.0", path = "protocols/identify" }

transports/dns/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.41.1
2+
3+
- Add hidden API that removes unnecessary async for `async-std`.
4+
See [PR 4808](https://github.com/libp2p/rust-libp2p/pull/4808).
5+
16
## 0.41.0
27

38
- Make `tokio::Transport::custom` and `async_std::Transport::custom` constructors infallible.

transports/dns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-dns"
33
edition = "2021"
44
rust-version = { workspace = true }
55
description = "DNS transport implementation for libp2p"
6-
version = "0.41.0"
6+
version = "0.41.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

0 commit comments

Comments
 (0)