Release of Alpha.7 (#5904)

This commit is contained in:
Benjamin Kampmann
2020-05-05 20:50:46 +02:00
committed by GitHub
parent ae3909eb53
commit 45886bd197
181 changed files with 1668 additions and 1668 deletions
+57 -57
View File
@@ -1,6 +1,6 @@
[package]
name = "node-cli"
version = "2.0.0-dev"
version = "2.0.0-alpha.7"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic Substrate node implementation in Rust."
build = "build.rs"
@@ -46,74 +46,74 @@ tracing = "0.1.10"
parking_lot = "0.10.0"
# primitives
sp-authority-discovery = { version = "2.0.0-dev", path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8.0-dev", path = "../../../primitives/consensus/babe" }
grandpa-primitives = { version = "2.0.0-dev", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
sp-finality-tracker = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/finality-tracker" }
sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sp-keyring = { version = "2.0.0-dev", path = "../../../primitives/keyring" }
sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "2.0.0-dev", path = "../../../primitives/transaction-pool" }
sp-authority-discovery = { version = "2.0.0-alpha.7", path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8.0-alpha.7", path = "../../../primitives/consensus/babe" }
grandpa-primitives = { version = "2.0.0-alpha.7", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sp-core = { version = "2.0.0-alpha.7", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0-alpha.7", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0-alpha.7", default-features = false, path = "../../../primitives/timestamp" }
sp-finality-tracker = { version = "2.0.0-alpha.7", default-features = false, path = "../../../primitives/finality-tracker" }
sp-inherents = { version = "2.0.0-alpha.7", path = "../../../primitives/inherents" }
sp-keyring = { version = "2.0.0-alpha.7", path = "../../../primitives/keyring" }
sp-io = { version = "2.0.0-alpha.7", path = "../../../primitives/io" }
sp-consensus = { version = "0.8.0-alpha.7", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "2.0.0-alpha.7", path = "../../../primitives/transaction-pool" }
# client dependencies
sc-client-api = { version = "2.0.0-dev", path = "../../../client/api" }
sc-chain-spec = { version = "2.0.0-dev", path = "../../../client/chain-spec" }
sc-consensus = { version = "0.8.0-dev", path = "../../../client/consensus/common" }
sc-transaction-pool = { version = "2.0.0-dev", path = "../../../client/transaction-pool" }
sc-network = { version = "0.8.0-dev", path = "../../../client/network" }
sc-consensus-babe = { version = "0.8.0-dev", path = "../../../client/consensus/babe" }
grandpa = { version = "0.8.0-dev", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
sc-client-db = { version = "0.8.0-dev", default-features = false, path = "../../../client/db" }
sc-offchain = { version = "2.0.0-dev", path = "../../../client/offchain" }
sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" }
sc-basic-authorship = { version = "0.8.0-dev", path = "../../../client/basic-authorship" }
sc-service = { version = "0.8.0-dev", default-features = false, path = "../../../client/service" }
sc-tracing = { version = "2.0.0-dev", path = "../../../client/tracing" }
sc-telemetry = { version = "2.0.0-dev", path = "../../../client/telemetry" }
sc-authority-discovery = { version = "0.8.0-dev", path = "../../../client/authority-discovery" }
sc-client-api = { version = "2.0.0-alpha.7", path = "../../../client/api" }
sc-chain-spec = { version = "2.0.0-alpha.7", path = "../../../client/chain-spec" }
sc-consensus = { version = "0.8.0-alpha.7", path = "../../../client/consensus/common" }
sc-transaction-pool = { version = "2.0.0-alpha.7", path = "../../../client/transaction-pool" }
sc-network = { version = "0.8.0-alpha.7", path = "../../../client/network" }
sc-consensus-babe = { version = "0.8.0-alpha.7", path = "../../../client/consensus/babe" }
grandpa = { version = "0.8.0-alpha.7", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
sc-client-db = { version = "0.8.0-alpha.7", default-features = false, path = "../../../client/db" }
sc-offchain = { version = "2.0.0-alpha.7", path = "../../../client/offchain" }
sc-rpc = { version = "2.0.0-alpha.7", path = "../../../client/rpc" }
sc-basic-authorship = { version = "0.8.0-alpha.7", path = "../../../client/basic-authorship" }
sc-service = { version = "0.8.0-alpha.7", default-features = false, path = "../../../client/service" }
sc-tracing = { version = "2.0.0-alpha.7", path = "../../../client/tracing" }
sc-telemetry = { version = "2.0.0-alpha.7", path = "../../../client/telemetry" }
sc-authority-discovery = { version = "0.8.0-alpha.7", path = "../../../client/authority-discovery" }
# frame dependencies
pallet-indices = { version = "2.0.0-dev", path = "../../../frame/indices" }
pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
pallet-contracts = { version = "2.0.0-dev", path = "../../../frame/contracts" }
frame-system = { version = "2.0.0-dev", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0-dev", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0-dev", path = "../../../frame/transaction-payment" }
frame-support = { version = "2.0.0-dev", default-features = false, path = "../../../frame/support" }
pallet-im-online = { version = "2.0.0-dev", default-features = false, path = "../../../frame/im-online" }
pallet-authority-discovery = { version = "2.0.0-dev", path = "../../../frame/authority-discovery" }
pallet-staking = { version = "2.0.0-dev", path = "../../../frame/staking" }
pallet-indices = { version = "2.0.0-alpha.7", path = "../../../frame/indices" }
pallet-timestamp = { version = "2.0.0-alpha.7", default-features = false, path = "../../../frame/timestamp" }
pallet-contracts = { version = "2.0.0-alpha.7", path = "../../../frame/contracts" }
frame-system = { version = "2.0.0-alpha.7", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0-alpha.7", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0-alpha.7", path = "../../../frame/transaction-payment" }
frame-support = { version = "2.0.0-alpha.7", default-features = false, path = "../../../frame/support" }
pallet-im-online = { version = "2.0.0-alpha.7", default-features = false, path = "../../../frame/im-online" }
pallet-authority-discovery = { version = "2.0.0-alpha.7", path = "../../../frame/authority-discovery" }
pallet-staking = { version = "2.0.0-alpha.7", path = "../../../frame/staking" }
# node-specific dependencies
node-runtime = { version = "2.0.0-dev", path = "../runtime" }
node-rpc = { version = "2.0.0-dev", path = "../rpc" }
node-primitives = { version = "2.0.0-dev", path = "../primitives" }
node-executor = { version = "2.0.0-dev", path = "../executor" }
node-runtime = { version = "2.0.0-alpha.7", path = "../runtime" }
node-rpc = { version = "2.0.0-alpha.7", path = "../rpc" }
node-primitives = { version = "2.0.0-alpha.7", path = "../primitives" }
node-executor = { version = "2.0.0-alpha.7", path = "../executor" }
# CLI-specific dependencies
sc-cli = { version = "0.8.0-dev", optional = true, path = "../../../client/cli" }
frame-benchmarking-cli = { version = "2.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
node-inspect = { version = "0.8.0-dev", optional = true, path = "../inspect" }
sc-cli = { version = "0.8.0-alpha.7", optional = true, path = "../../../client/cli" }
frame-benchmarking-cli = { version = "2.0.0-alpha.7", optional = true, path = "../../../utils/frame/benchmarking-cli" }
node-inspect = { version = "0.8.0-alpha.7", optional = true, path = "../inspect" }
# WASM-specific dependencies
wasm-bindgen = { version = "0.2.57", optional = true }
wasm-bindgen-futures = { version = "0.4.7", optional = true }
browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.8.0-dev"}
browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.8.0-alpha.7"}
[target.'cfg(target_arch="x86_64")'.dependencies]
node-executor = { version = "2.0.0-dev", path = "../executor", features = [ "wasmtime" ] }
sc-cli = { version = "0.8.0-dev", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] }
sc-service = { version = "0.8.0-dev", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] }
node-executor = { version = "2.0.0-alpha.7", path = "../executor", features = [ "wasmtime" ] }
sc-cli = { version = "0.8.0-alpha.7", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] }
sc-service = { version = "0.8.0-alpha.7", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] }
[dev-dependencies]
sc-keystore = { version = "2.0.0-dev", path = "../../../client/keystore" }
sc-consensus = { version = "0.8.0-dev", path = "../../../client/consensus/common" }
sc-consensus-babe = { version = "0.8.0-dev", features = ["test-helpers"], path = "../../../client/consensus/babe" }
sc-consensus-epochs = { version = "0.8.0-dev", path = "../../../client/consensus/epochs" }
sc-keystore = { version = "2.0.0-alpha.7", path = "../../../client/keystore" }
sc-consensus = { version = "0.8.0-alpha.7", path = "../../../client/consensus/common" }
sc-consensus-babe = { version = "0.8.0-alpha.7", features = ["test-helpers"], path = "../../../client/consensus/babe" }
sc-consensus-epochs = { version = "0.8.0-alpha.7", path = "../../../client/consensus/epochs" }
sc-service-test = { version = "2.0.0-dev", path = "../../../client/service/test" }
futures = "0.3.4"
tempfile = "3.1.0"
@@ -125,12 +125,12 @@ platforms = "0.2.1"
[build-dependencies]
structopt = { version = "0.3.8", optional = true }
node-inspect = { version = "0.8.0-dev", optional = true, path = "../inspect" }
frame-benchmarking-cli = { version = "2.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
substrate-build-script-utils = { version = "2.0.0-dev", optional = true, path = "../../../utils/build-script-utils" }
node-inspect = { version = "0.8.0-alpha.7", optional = true, path = "../inspect" }
frame-benchmarking-cli = { version = "2.0.0-alpha.7", optional = true, path = "../../../utils/frame/benchmarking-cli" }
substrate-build-script-utils = { version = "2.0.0-alpha.7", optional = true, path = "../../../utils/build-script-utils" }
[build-dependencies.sc-cli]
version = "0.8.0-dev"
version = "0.8.0-alpha.7"
package = "sc-cli"
path = "../../../client/cli"
optional = true