Releasing rc2 (#6136)

This commit is contained in:
Benjamin Kampmann
2020-05-26 14:32:23 +02:00
committed by GitHub
parent 42ad0d138f
commit b64f55089d
184 changed files with 1771 additions and 1768 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-frame-rpc-support"
version = "2.0.0-rc1"
version = "2.0.0-rc2"
authors = ["Parity Technologies <admin@parity.io>", "Andrew Dirksen <andrew@dirksen.com>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,10 +17,10 @@ jsonrpc-client-transports = { version = "14.0.5", default-features = false, feat
jsonrpc-core = "14"
codec = { package = "parity-scale-codec", version = "1" }
serde = "1"
frame-support = { version = "2.0.0-rc1", path = "../../../../frame/support" }
sp-storage = { version = "2.0.0-rc1", path = "../../../../primitives/storage" }
sc-rpc-api = { version = "0.8.0-rc1", path = "../../../../client/rpc-api" }
frame-support = { version = "2.0.0-rc2", path = "../../../../frame/support" }
sp-storage = { version = "2.0.0-rc2", path = "../../../../primitives/storage" }
sc-rpc-api = { version = "0.8.0-rc2", path = "../../../../client/rpc-api" }
[dev-dependencies]
frame-system = { version = "2.0.0-rc1", path = "../../../../frame/system" }
frame-system = { version = "2.0.0-rc2", path = "../../../../frame/system" }
tokio = "0.2"
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-frame-rpc-system"
version = "2.0.0-rc1"
version = "2.0.0-rc2"
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-rc1", path = "../../../../client/api" }
sc-client-api = { version = "2.0.0-rc2", path = "../../../../client/api" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
futures = { version = "0.3.4", features = ["compat"] }
jsonrpc-core = "14.0.3"
@@ -20,14 +20,14 @@ jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
log = "0.4.8"
serde = { version = "1.0.101", features = ["derive"] }
sp-runtime = { version = "2.0.0-rc1", path = "../../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc1", path = "../../../../primitives/api" }
frame-system-rpc-runtime-api = { version = "2.0.0-rc1", path = "../../../../frame/system/rpc/runtime-api" }
sp-core = { version = "2.0.0-rc1", path = "../../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc1", path = "../../../../primitives/blockchain" }
sp-transaction-pool = { version = "2.0.0-rc1", path = "../../../../primitives/transaction-pool" }
sp-runtime = { version = "2.0.0-rc2", path = "../../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc2", path = "../../../../primitives/api" }
frame-system-rpc-runtime-api = { version = "2.0.0-rc2", path = "../../../../frame/system/rpc/runtime-api" }
sp-core = { version = "2.0.0-rc2", path = "../../../../primitives/core" }
sp-blockchain = { version = "2.0.0-rc2", path = "../../../../primitives/blockchain" }
sp-transaction-pool = { version = "2.0.0-rc2", path = "../../../../primitives/transaction-pool" }
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-rc1", path = "../../../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0-rc2", path = "../../../../test-utils/runtime/client" }
env_logger = "0.7.0"
sc-transaction-pool = { version = "2.0.0-rc1", path = "../../../../client/transaction-pool" }
sc-transaction-pool = { version = "2.0.0-rc2", path = "../../../../client/transaction-pool" }