Releasing 2.0.0-alpha.5 (#5340)

* bump pre-version

* Changelog alpha.4->alpha.5

* repo + homepage to sp-consensus-vrf

* Add default rocksdb feature to `frame-benchmarking-cli` (#5367)

* Add default rocksdb feature

* Update Cargo.toml

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
This commit is contained in:
Benjamin Kampmann
2020-03-24 15:08:02 +01:00
committed by GitHub
parent 75123f051e
commit ba06d5ef64
167 changed files with 1537 additions and 1523 deletions
+20 -20
View File
@@ -1,6 +1,6 @@
[package]
name = "node-template"
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
@@ -16,26 +16,26 @@ futures = "0.3.1"
log = "0.4.8"
structopt = "0.3.8"
sc-cli = { version = "0.8.0-alpha.4", path = "../../../client/cli" }
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-alpha.4", path = "../../../client/executor" }
sc-service = { version = "0.8.0-alpha.4", path = "../../../client/service" }
sp-inherents = { version = "2.0.0-alpha.4", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-alpha.4", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-alpha.4", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8.0-alpha.4", path = "../../../client/network" }
sc-consensus-aura = { version = "0.8.0-alpha.4", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-alpha.4", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-alpha.4", path = "../../../primitives/consensus/common" }
grandpa = { version = "0.8.0-alpha.4", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
grandpa-primitives = { version = "2.0.0-alpha.4", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sc-client = { version = "0.8.0-alpha.4", path = "../../../client/" }
sc-client-api = { version = "2.0.0-alpha.4", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime" }
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-alpha.4"}
sc-cli = { version = "0.8.0-alpha.5", path = "../../../client/cli" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-alpha.5", path = "../../../client/executor" }
sc-service = { version = "0.8.0-alpha.5", path = "../../../client/service" }
sp-inherents = { version = "2.0.0-alpha.5", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-alpha.5", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-alpha.5", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8.0-alpha.5", path = "../../../client/network" }
sc-consensus-aura = { version = "0.8.0-alpha.5", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
grandpa = { version = "0.8.0-alpha.5", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
grandpa-primitives = { version = "2.0.0-alpha.5", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sc-client = { version = "0.8.0-alpha.5", path = "../../../client/" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-alpha.5"}
node-template-runtime = { version = "2.0.0-alpha.4", path = "../runtime" }
node-template-runtime = { version = "2.0.0-alpha.5", path = "../runtime" }
[build-dependencies]
vergen = "3.0.4"
build-script-utils = { version = "2.0.0-alpha.4", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
build-script-utils = { version = "2.0.0-alpha.5", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
@@ -2,7 +2,7 @@
authors = ['Anonymous']
edition = '2018'
name = 'pallet-template'
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
@@ -14,27 +14,27 @@ safe-mix = { default-features = false, version = '1.0.0' }
[dependencies.frame-support]
default-features = false
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
path = "../../../../frame/support"
[dependencies.system]
default-features = false
package = 'frame-system'
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
path = "../../../../frame/system"
[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
path = "../../../../primitives/core"
[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
path = "../../../../primitives/io"
[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
path = "../../../../primitives/runtime"
+24 -24
View File
@@ -1,6 +1,6 @@
[package]
name = "node-template-runtime"
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
@@ -10,31 +10,31 @@ repository = "https://github.com/paritytech/substrate/"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false, features = ["derive"] }
aura = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
balances = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
frame-support = { version = "2.0.0-alpha.4", default-features = false, path = "../../../frame/support" }
grandpa = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
randomness-collective-flip = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
sudo = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
system = { version = "2.0.0-alpha.4", default-features = false, package = "frame-system", path = "../../../frame/system" }
timestamp = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
transaction-payment = { version = "2.0.0-alpha.4", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-alpha.4", default-features = false, path = "../../../frame/executive" }
aura = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
balances = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/support" }
grandpa = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
randomness-collective-flip = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
sudo = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
system = { version = "2.0.0-alpha.5", default-features = false, package = "frame-system", path = "../../../frame/system" }
timestamp = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
transaction-payment = { version = "2.0.0-alpha.5", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/executive" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.4"}
sp-consensus-aura = { version = "0.8.0-alpha.4", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-alpha.4"}
sp-io = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/io" }
sp-offchain = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-alpha.4", default-features = false, path = "../../../primitives/version" }
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.5"}
sp-consensus-aura = { version = "0.8.0-alpha.5", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-alpha.5"}
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/io" }
sp-offchain = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/version" }
template = { version = "2.0.0-alpha.4", default-features = false, path = "../pallets/template", package = "pallet-template" }
template = { version = "2.0.0-alpha.5", default-features = false, path = "../pallets/template", package = "pallet-template" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }