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
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-frame-rpc-system"
version = "2.0.0-rc5"
version = "2.0.0-rc6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,7 +12,7 @@ description = "FRAME's system exposed over Substrate RPC"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc5", path = "../../../../client/api" }
sc-client-api = { version = "2.0.0-rc6", path = "../../../../client/api" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
futures = { version = "0.3.4", features = ["compat"] }
jsonrpc-core = "14.2.0"
@@ -20,16 +20,16 @@ jsonrpc-core-client = "14.2.0"
jsonrpc-derive = "14.2.1"
log = "0.4.8"
serde = { version = "1.0.101", features = ["derive"] }
sp-runtime = { version = "2.0.0-rc5", path = "../../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc5", path = "../../../../primitives/api" }
frame-system-rpc-runtime-api = { version = "2.0.0-rc5", path = "../../../../frame/system/rpc/runtime-api" }
sp-core = { version = "2.0.0-rc5", path = "../../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc5", path = "../../../../primitives/blockchain" }
sp-transaction-pool = { version = "2.0.0-rc5", path = "../../../../primitives/transaction-pool" }
sp-block-builder = { version = "2.0.0-rc5", path = "../../../../primitives/block-builder" }
sc-rpc-api = { version = "0.8.0-rc5", path = "../../../../client/rpc-api" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc6", path = "../../../../primitives/api" }
frame-system-rpc-runtime-api = { version = "2.0.0-rc6", path = "../../../../frame/system/rpc/runtime-api" }
sp-core = { version = "2.0.0-rc6", path = "../../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../../primitives/blockchain" }
sp-transaction-pool = { version = "2.0.0-rc6", path = "../../../../primitives/transaction-pool" }
sp-block-builder = { version = "2.0.0-rc6", path = "../../../../primitives/block-builder" }
sc-rpc-api = { version = "0.8.0-rc6", path = "../../../../client/rpc-api" }
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-rc5", path = "../../../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../../test-utils/runtime/client" }
env_logger = "0.7.0"
sc-transaction-pool = { version = "2.0.0-rc5", path = "../../../../client/transaction-pool" }
sc-transaction-pool = { version = "2.0.0-rc6", path = "../../../../client/transaction-pool" }
@@ -0,0 +1,3 @@
System FRAME specific RPC methods.
License: Apache-2.0