prepping for releasing rc6 (#6922)

* Bump version

* update test-utils crates to be ready for publishing

* adding changelog

* Adding automaticly generated READMEs

* fixing versions

* another version mishap
This commit is contained in:
Benjamin Kampmann
2020-08-20 17:04:42 +02:00
committed by GitHub
parent 6f59c95c89
commit 2416aa7999
335 changed files with 5490 additions and 1879 deletions
@@ -1,6 +1,6 @@
[package]
name = "sc-finality-grandpa-rpc"
version = "0.8.0-rc5"
version = "0.8.0-rc6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "RPC extensions for the GRANDPA finality gadget"
repository = "https://github.com/paritytech/substrate/"
@@ -8,9 +8,9 @@ edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
[dependencies]
sc-rpc = { version = "2.0.0-rc5", path = "../../rpc" }
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
sc-finality-grandpa = { version = "0.8.0-rc5", path = "../" }
sc-rpc = { version = "2.0.0-rc6", path = "../../rpc" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sc-finality-grandpa = { version = "0.8.0-rc6", path = "../" }
finality-grandpa = { version = "0.12.3", features = ["derive-codec"] }
jsonrpc-core = "14.2.0"
jsonrpc-core-client = "14.2.0"
@@ -24,13 +24,13 @@ derive_more = "0.99.2"
parity-scale-codec = { version = "1.3.0", features = ["derive"] }
[dev-dependencies]
sc-block-builder = { version = "0.8.0-rc5", path = "../../block-builder" }
sc-network-test = { version = "0.8.0-rc5", path = "../../network/test" }
sc-rpc = { version = "2.0.0-rc5", path = "../../rpc", features = ["test-helpers"] }
sp-blockchain = { version = "2.0.0-rc5", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc5", path = "../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0-rc5", path = "../../../primitives/finality-grandpa" }
sp-keyring = { version = "2.0.0-rc5", path = "../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc5", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0-rc6", path = "../../block-builder" }
sc-network-test = { version = "0.8.0-rc6", path = "../../network/test" }
sc-rpc = { version = "2.0.0-rc6", path = "../../rpc", features = ["test-helpers"] }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0-rc6", path = "../../../primitives/finality-grandpa" }
sp-keyring = { version = "2.0.0-rc6", path = "../../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
lazy_static = "1.4"