Skip to content

Commit 842a3c3

Browse files
authored
Merge branch 'master' into dependabot/github_actions/actions/cache-4
2 parents aa5a435 + 469b0de commit 842a3c3

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.18.2
2+
3+
- Implement missing protocols. See [PR 110].
4+
[PR 110]: https://github.com/multiformats/rust-multiaddr/pull/110.
5+
6+
- Re-export `libp2p_identity::PeerId`. See [PR 108].
7+
[PR 108]: https://github.com/multiformats/rust-multiaddr/pull/108.
8+
9+
- Avoid allocations in Display and Debug of Multiaddr. See [PR 106].
10+
[PR 106]: https://github.com/multiformats/rust-multiaddr/pull/106
11+
112
# 0.18.1
213

314
- Add `with_p2p` on `Multiaddr`. See [PR 102].

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,28 @@ keywords = ["multiaddr", "ipfs"]
88
license = "MIT"
99
name = "multiaddr"
1010
readme = "README.md"
11-
version = "0.18.1"
11+
version = "0.18.2"
1212

1313
[features]
1414
default = ["url"]
1515

1616
[dependencies]
1717
arrayref = "0.3"
18-
byteorder = "1.3.1"
19-
data-encoding = "2.1"
18+
byteorder = "1.5.0"
19+
data-encoding = "2.6.0"
2020
multibase = "0.9.1"
2121
multihash = "0.19"
22-
percent-encoding = "2.1.0"
23-
serde = "1.0.70"
22+
percent-encoding = "2.3.1"
23+
serde = "1.0.209"
2424
static_assertions = "1.1"
2525
unsigned-varint = "0.8"
26-
url = { version = "2.1.0", optional = true, default-features = false }
27-
libp2p-identity = { version = "0.2.0", features = ["peerid"] }
26+
url = { version = "2.5.0", optional = true, default-features = false }
27+
libp2p-identity = { version = "0.2.9", features = ["peerid"] }
2828

2929
[dev-dependencies]
3030
bincode = "1"
3131
quickcheck = { version = "1.0.3", default-features = false }
32-
rand = "0.8.4"
32+
rand = "0.8.5"
3333
serde_json = "1.0"
3434

3535
# Passing arguments to the docsrs builder in order to properly document cfg's.

0 commit comments

Comments
 (0)