Skip to content

Commit

Permalink
fix(dns): bump version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
oblique authored Nov 13, 2023
1 parent 7f4ba69 commit 51832fb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
5 changes: 5 additions & 0 deletions transports/dns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion transports/dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down

0 comments on commit 51832fb

Please sign in to comment.