Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Prepping release of alpha.6 (#5629)
Browse files Browse the repository at this point in the history
* bumping version

* cargo update

* adding changelog
  • Loading branch information
gnunicorn authored Apr 14, 2020
1 parent 292b558 commit 67f354f
Show file tree
Hide file tree
Showing 177 changed files with 2,288 additions and 2,252 deletions.
574 changes: 287 additions & 287 deletions Cargo.lock

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions bin/node-template/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-template"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Anonymous"]
description = "Substrate Node template"
edition = "2018"
Expand All @@ -9,6 +9,9 @@ build = "build.rs"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[[bin]]
name = "node-template"

Expand All @@ -17,28 +20,25 @@ futures = "0.3.4"
log = "0.4.8"
structopt = "0.3.8"

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" }
sc-finality-grandpa = { version = "0.8.0-alpha.5", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0-alpha.5", 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"}
sc-cli = { version = "0.8.0-alpha.6", path = "../../../client/cli" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-alpha.6", path = "../../../client/executor" }
sc-service = { version = "0.8.0-alpha.6", path = "../../../client/service" }
sp-inherents = { version = "2.0.0-alpha.6", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-alpha.6", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-alpha.6", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8.0-alpha.6", path = "../../../client/network" }
sc-consensus-aura = { version = "0.8.0-alpha.6", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
sc-finality-grandpa = { version = "0.8.0-alpha.6", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0-alpha.6", path = "../../../primitives/finality-grandpa" }
sc-client = { version = "0.8.0-alpha.6", path = "../../../client/" }
sc-client-api = { version = "2.0.0-alpha.6", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-alpha.6"}

node-template-runtime = { version = "2.0.0-alpha.5", path = "../runtime" }
node-template-runtime = { version = "2.0.0-alpha.6", path = "../runtime" }

[build-dependencies]
substrate-build-script-utils = { version = "2.0.0-alpha.5", path = "../../../utils/build-script-utils" }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
substrate-build-script-utils = { version = "2.0.0-alpha.6", path = "../../../utils/build-script-utils" }
18 changes: 9 additions & 9 deletions bin/node-template/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,40 @@
authors = ['Anonymous']
edition = '2018'
name = 'pallet-template'
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME pallet template"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }

[dependencies.frame-support]
default-features = false
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
path = "../../../../frame/support"

[dependencies.frame-system]
default-features = false
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
path = "../../../../frame/system"
[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
path = "../../../../primitives/core"

[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
path = "../../../../primitives/io"

[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
path = "../../../../primitives/runtime"


Expand All @@ -43,6 +46,3 @@ std = [
'frame-support/std',
'frame-system/std'
]

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
54 changes: 27 additions & 27 deletions bin/node-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
[package]
name = "node-template-runtime"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }

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" }
aura = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
balances = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/support" }
grandpa = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
randomness-collective-flip = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
sudo = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
system = { version = "2.0.0-alpha.6", default-features = false, package = "frame-system", path = "../../../frame/system" }
timestamp = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
transaction-payment = { version = "2.0.0-alpha.6", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/executive" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
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" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.6"}
sp-consensus-aura = { version = "0.8.0-alpha.6", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-alpha.6"}
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/io" }
sp-offchain = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/version" }

template = { version = "2.0.0-alpha.5", default-features = false, path = "../pallets/template", package = "pallet-template" }
template = { version = "2.0.0-alpha.6", 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" }
Expand Down Expand Up @@ -68,6 +71,3 @@ std = [
"transaction-payment/std",
"template/std",
]

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
14 changes: 7 additions & 7 deletions bin/node/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-bench"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <[email protected]>"]
description = "Substrate node integration benchmarks."
edition = "2018"
Expand All @@ -10,11 +10,11 @@ license = "GPL-3.0"

[dependencies]
log = "0.4.8"
node-primitives = { version = "2.0.0-alpha.5", path = "../primitives" }
node-testing = { version = "2.0.0-alpha.5", path = "../testing" }
sc-cli = { version = "0.8.0-alpha.5", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-alpha.5", path = "../../../client/api/" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
node-primitives = { version = "2.0.0-alpha.6", path = "../primitives" }
node-testing = { version = "2.0.0-alpha.6", path = "../testing" }
sc-cli = { version = "0.8.0-alpha.6", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-alpha.6", path = "../../../client/api/" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
serde = "1.0.101"
serde_json = "1.0.41"
structopt = "0.3"
structopt = "0.3"
Loading

0 comments on commit 67f354f

Please sign in to comment.