From 266c705ab4bbac113585bfc198cc884b4c35380f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Oct 2021 17:12:57 +0000 Subject: [PATCH 1/2] Update multihash requirement from 0.14 to 0.15 Updates the requirements on [multihash](https://github.com/multiformats/rust-multihash) to permit the latest version. - [Release notes](https://github.com/multiformats/rust-multihash/releases) - [Commits](https://github.com/multiformats/rust-multihash/compare/v0.14.0...v0.15.0) --- updated-dependencies: - dependency-name: multihash dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8162f62..3bf8a5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ arrayref = "0.3" bs58 = "0.4.0" byteorder = "1.3.1" data-encoding = "2.1" -multihash = { version = "0.14", default-features = false, features = ["std", "multihash-impl", "identity"] } +multihash = { version = "0.15", default-features = false, features = ["std", "multihash-impl", "identity"] } percent-encoding = "2.1.0" serde = "1.0.70" static_assertions = "1.1" From d12b79df7d991b72082a14d6472dc84aab91c39d Mon Sep 17 00:00:00 2001 From: Max Inden Date: Wed, 6 Oct 2021 17:20:56 +0200 Subject: [PATCH 2/2] CHANGELOG: Add entry --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b45e385..a803ea6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ - Add support for TLS protocol (see [PR 48]). +- Update to `multihash` `v0.15` (see [PR 50]). + +[PR 48]: https://github.com/multiformats/rust-multiaddr/pull/48 +[PR 50]: https://github.com/multiformats/rust-multiaddr/pull/50 + + # 0.13.0 [2021-07-08] - Update to multihash v0.14.0 (see [PR 44]).