Releasing 2.0 – two dot 😮 (#7182)

Tagging the release of substrate 2.0


[ci: skip-checks]
This commit is contained in:
Benjamin Kampmann
2020-09-22 19:47:38 +02:00
committed by GitHub
parent cbf1a282b5
commit ecdc94420e
190 changed files with 1977 additions and 1920 deletions
+28 -28
View File
@@ -1,6 +1,6 @@
[package]
name = "node-template"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Anonymous"]
description = "A new FRAME-based Substrate node, ready for hacking."
edition = "2018"
@@ -18,41 +18,41 @@ name = "node-template"
[dependencies]
structopt = "0.3.8"
sc-cli = { version = "0.8.0-rc6", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-rc6", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.8.0-rc6", path = "../../../client/service", features = ["wasmtime"] }
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-rc6", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc6", path = "../../../primitives/transaction-pool" }
sc-consensus-aura = { version = "0.8.0-rc6", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-rc6", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc6", path = "../../../client/consensus/common" }
sc-finality-grandpa = { version = "0.8.0-rc6", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0-rc6", path = "../../../primitives/finality-grandpa" }
sc-client-api = { version = "2.0.0-rc6", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sc-cli = { version = "0.8.0", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.8.0", path = "../../../client/service", features = ["wasmtime"] }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
sc-consensus-aura = { version = "0.8.0", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0", path = "../../../client/consensus/common" }
sc-finality-grandpa = { version = "0.8.0", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0", path = "../../../primitives/finality-grandpa" }
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
# These dependencies are used for the node template's RPCs
jsonrpc-core = "15.0.0"
sc-rpc = { version = "2.0.0-rc6", path = "../../../client/rpc" }
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
sc-rpc-api = { version = "0.8.0-rc6", path = "../../../client/rpc-api" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
sp-block-builder = { version = "2.0.0-rc6", path = "../../../primitives/block-builder" }
sc-basic-authorship = { version = "0.8.0-rc6", path = "../../../client/basic-authorship" }
substrate-frame-rpc-system = { version = "2.0.0-rc6", path = "../../../utils/frame/rpc/system" }
pallet-transaction-payment-rpc = { version = "2.0.0-rc6", path = "../../../frame/transaction-payment/rpc/" }
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sc-rpc-api = { version = "0.8.0", path = "../../../client/rpc-api" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sc-basic-authorship = { version = "0.8.0", path = "../../../client/basic-authorship" }
substrate-frame-rpc-system = { version = "2.0.0", path = "../../../utils/frame/rpc/system" }
pallet-transaction-payment-rpc = { version = "2.0.0", path = "../../../frame/transaction-payment/rpc/" }
# These dependencies are used for runtime benchmarking
frame-benchmarking = { version = "2.0.0-rc6", path = "../../../frame/benchmarking" }
frame-benchmarking-cli = { version = "2.0.0-rc6", path = "../../../utils/frame/benchmarking-cli" }
frame-benchmarking = { version = "2.0.0", path = "../../../frame/benchmarking" }
frame-benchmarking-cli = { version = "2.0.0", path = "../../../utils/frame/benchmarking-cli" }
node-template-runtime = { version = "2.0.0-rc6", path = "../runtime" }
node-template-runtime = { version = "2.0.0", path = "../runtime" }
[build-dependencies]
substrate-build-script-utils = { version = "2.0.0-rc6", path = "../../../utils/build-script-utils" }
substrate-build-script-utils = { version = "2.0.0", path = "../../../utils/build-script-utils" }
[features]
default = []
@@ -2,7 +2,7 @@
authors = ['Anonymous']
edition = '2018'
name = 'pallet-template'
version = "2.0.0-rc6"
version = "2.0.0"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
@@ -17,27 +17,27 @@ codec = { package = "parity-scale-codec", version = "1.3.4", default-features =
[dependencies.frame-support]
default-features = false
version = "2.0.0-rc6"
version = "2.0.0"
path = "../../../../frame/support"
[dependencies.frame-system]
default-features = false
version = "2.0.0-rc6"
version = "2.0.0"
path = "../../../../frame/system"
[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-rc6"
version = "2.0.0"
path = "../../../../primitives/core"
[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-rc6"
version = "2.0.0"
path = "../../../../primitives/io"
[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-rc6"
version = "2.0.0"
path = "../../../../primitives/runtime"
+27 -27
View File
@@ -1,6 +1,6 @@
[package]
name = "node-template-runtime"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
@@ -13,39 +13,39 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
pallet-aura = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/aura" }
pallet-balances = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/balances" }
frame-support = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/support" }
pallet-grandpa = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/grandpa" }
pallet-randomness-collective-flip = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/randomness-collective-flip" }
pallet-sudo = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/sudo" }
frame-system = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/system" }
pallet-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/executive" }
pallet-aura = { version = "2.0.0", default-features = false, path = "../../../frame/aura" }
pallet-balances = { version = "2.0.0", default-features = false, path = "../../../frame/balances" }
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" }
pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../../frame/grandpa" }
pallet-randomness-collective-flip = { version = "2.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
pallet-sudo = { version = "2.0.0", default-features = false, path = "../../../frame/sudo" }
frame-system = { version = "2.0.0", default-features = false, path = "../../../frame/system" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0", default-features = false, path = "../../../frame/executive" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc6"}
sp-consensus-aura = { version = "0.8.0-rc6", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-rc6"}
sp-offchain = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/version" }
sp-api = { version = "2.0.0", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0"}
sp-consensus-aura = { version = "0.8.0", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0"}
sp-offchain = { version = "2.0.0", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0", default-features = false, path = "../../../primitives/version" }
# Used for the node template's RPCs
frame-system-rpc-runtime-api = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
frame-system-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
# Used for runtime benchmarking
frame-benchmarking = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/benchmarking", optional = true }
frame-system-benchmarking = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
frame-system-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
hex-literal = { version = "0.3.1", optional = true }
template = { version = "2.0.0-rc6", default-features = false, path = "../pallets/template", package = "pallet-template" }
template = { version = "2.0.0", 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" }