Skip to content

Commit 1601864

Browse files
committed
core/: Prepare libp2p-core v0.28.1 incl multiaddr v0.11.2
libp2p-dns requires a new feature in parity-multiaddr v0.11.2 namely Multiaddr::ends_with. libp2p-dns does not depend on parity-multiaddr directly but through libp2p-core. Prepare a new version of libp2p-core requiring at least parity-multiaddr v0.11.2 and update libp2p-dns to require libp2p-core v0.28.1.
1 parent 0934b01 commit 1601864

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.28.1 [2021-03-17]
2+
3+
- Update `paritytech-multiaddr` to `>=v0.11.2`.
4+
15
# 0.28.0 [2021-03-17]
26

37
- `Network::dial()` understands `/p2p` addresses and `Transport::dial`

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-core"
33
edition = "2018"
44
description = "Core traits and structs of libp2p"
5-
version = "0.28.0"
5+
version = "0.28.1"
66
authors = ["Parity Technologies <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -20,7 +20,7 @@ futures-timer = "3"
2020
lazy_static = "1.2"
2121
libsecp256k1 = { version = "0.3.1", optional = true }
2222
log = "0.4"
23-
multiaddr = { package = "parity-multiaddr", version = "0.11", path = "../misc/multiaddr" }
23+
multiaddr = { package = "parity-multiaddr", version = "0.11.2", path = "../misc/multiaddr" }
2424
multihash = { version = "0.13", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] }
2525
multistream-select = { version = "0.10", path = "../misc/multistream-select" }
2626
parking_lot = "0.11.0"

transports/dns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
1010
categories = ["network-programming", "asynchronous"]
1111

1212
[dependencies]
13-
libp2p-core = { version = "0.28.0", path = "../../core" }
13+
libp2p-core = { version = "0.28.1", path = "../../core" }
1414
log = "0.4.1"
1515
futures = "0.3.1"
1616
trust-dns-resolver = { version = "0.20", default-features = false, features = ["system-config"] }

0 commit comments

Comments
 (0)