From f735110c24052509e14767385ff98f8e13d10595 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Jun 2021 19:19:51 +0000 Subject: [PATCH] Bump finality-grandpa from 0.13.0 to 0.14.1 Bumps [finality-grandpa](https://github.com/paritytech/finality-grandpa) from 0.13.0 to 0.14.1. - [Release notes](https://github.com/paritytech/finality-grandpa/releases) - [Commits](https://github.com/paritytech/finality-grandpa/compare/v0.13.0...v0.14.1) --- updated-dependencies: - dependency-name: finality-grandpa dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++++---- client/finality-grandpa/Cargo.toml | 4 ++-- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b11af51..0628a55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1601,6 +1601,21 @@ name = "finality-grandpa" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2cd795898c348a8ec9edc66ec9e014031c764d4c88cc26d09b492cd93eb41339" +dependencies = [ + "either", + "futures 0.3.13", + "futures-timer 3.0.2", + "log", + "num-traits", + "parity-scale-codec", + "parking_lot 0.11.1", +] + +[[package]] +name = "finality-grandpa" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74a1bfdcc776e63e49f741c7ce6116fa1b887e8ac2e3ccb14dd4aa113e54feb9" dependencies = [ "either", "futures 0.3.13", @@ -4685,7 +4700,7 @@ dependencies = [ name = "pallet-grandpa" version = "3.0.0" dependencies = [ - "finality-grandpa", + "finality-grandpa 0.13.0", "frame-benchmarking", "frame-support", "frame-system", @@ -7019,7 +7034,7 @@ version = "0.9.0" dependencies = [ "assert_matches", "derive_more", - "finality-grandpa", + "finality-grandpa 0.14.1", "fork-tree", "futures 0.3.13", "futures-timer 3.0.2", @@ -7064,7 +7079,7 @@ name = "sc-finality-grandpa-rpc" version = "0.9.0" dependencies = [ "derive_more", - "finality-grandpa", + "finality-grandpa 0.13.0", "futures 0.3.13", "jsonrpc-core", "jsonrpc-core-client", @@ -8399,7 +8414,7 @@ dependencies = [ name = "sp-finality-grandpa" version = "3.0.0" dependencies = [ - "finality-grandpa", + "finality-grandpa 0.13.0", "log", "parity-scale-codec", "serde", diff --git a/client/finality-grandpa/Cargo.toml b/client/finality-grandpa/Cargo.toml index 38f6acd..ef1b02c 100644 --- a/client/finality-grandpa/Cargo.toml +++ b/client/finality-grandpa/Cargo.toml @@ -43,13 +43,13 @@ sc-network-gossip = { version = "0.9.0", path = "../network-gossip" } sp-finality-grandpa = { version = "3.0.0", path = "../../primitives/finality-grandpa" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} sc-block-builder = { version = "0.9.0", path = "../block-builder" } -finality-grandpa = { version = "0.13.0", features = ["derive-codec"] } +finality-grandpa = { version = "0.14.1", features = ["derive-codec"] } pin-project = "1.0.4" linked-hash-map = "0.5.2" [dev-dependencies] assert_matches = "1.3.0" -finality-grandpa = { version = "0.13.0", features = ["derive-codec", "test-helpers"] } +finality-grandpa = { version = "0.14.1", features = ["derive-codec", "test-helpers"] } sc-network = { version = "0.9.0", path = "../network" } sc-network-test = { version = "0.8.0", path = "../network/test" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }