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

Commit

Permalink
prepping for releasing rc6 (#6922)
Browse files Browse the repository at this point in the history
* Bump version

* update test-utils crates to be ready for publishing

* adding changelog

* Adding automaticly generated READMEs

* fixing versions

* another version mishap
  • Loading branch information
gnunicorn authored Aug 20, 2020
1 parent 9c679b3 commit be8bb18
Show file tree
Hide file tree
Showing 335 changed files with 5,490 additions and 1,879 deletions.
370 changes: 185 additions & 185 deletions Cargo.lock

Large diffs are not rendered by default.

52 changes: 26 additions & 26 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-rc5"
version = "2.0.0-rc6"
authors = ["Anonymous"]
description = "A new FRAME-based Substrate node, ready for hacking."
edition = "2018"
Expand All @@ -18,34 +18,34 @@ name = "node-template"
[dependencies]
structopt = "0.3.8"

sc-cli = { version = "0.8.0-rc5", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-rc5", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.8.0-rc5", path = "../../../client/service", features = ["wasmtime"] }
sp-inherents = { version = "2.0.0-rc5", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-rc5", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc5", path = "../../../primitives/transaction-pool" }
sc-consensus-aura = { version = "0.8.0-rc5", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8.0-rc5", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8.0-rc5", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0-rc5", path = "../../../client/consensus/common" }
sc-finality-grandpa = { version = "0.8.0-rc5", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "2.0.0-rc5", path = "../../../primitives/finality-grandpa" }
sc-client-api = { version = "2.0.0-rc5", path = "../../../client/api" }
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
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" }

# These dependencies are used for the node template's RPCs
jsonrpc-core = "14.0.3"
sc-rpc = { version = "2.0.0-rc5", path = "../../../client/rpc" }
sp-api = { version = "2.0.0-rc5", path = "../../../primitives/api" }
sc-rpc-api = { version = "0.8.0-rc5", path = "../../../client/rpc-api" }
sp-blockchain = { version = "2.0.0-rc5", path = "../../../primitives/blockchain" }
sp-block-builder = { version = "2.0.0-rc5", path = "../../../primitives/block-builder" }
sc-basic-authorship = { version = "0.8.0-rc5", path = "../../../client/basic-authorship" }
substrate-frame-rpc-system = { version = "2.0.0-rc5", path = "../../../utils/frame/rpc/system" }
pallet-transaction-payment-rpc = { version = "2.0.0-rc5", path = "../../../frame/transaction-payment/rpc/" }
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/" }

node-template-runtime = { version = "2.0.0-rc5", path = "../runtime" }
node-template-runtime = { version = "2.0.0-rc6", path = "../runtime" }

[build-dependencies]
substrate-build-script-utils = { version = "2.0.0-rc5", path = "../../../utils/build-script-utils" }
substrate-build-script-utils = { version = "2.0.0-rc6", path = "../../../utils/build-script-utils" }
12 changes: 6 additions & 6 deletions bin/node-template/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ['Anonymous']
edition = '2018'
name = 'pallet-template'
version = "2.0.0-rc5"
version = "2.0.0-rc6"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
Expand All @@ -16,27 +16,27 @@ codec = { package = "parity-scale-codec", version = "1.3.4", default-features =

[dependencies.frame-support]
default-features = false
version = "2.0.0-rc5"
version = "2.0.0-rc6"
path = "../../../../frame/support"

[dependencies.frame-system]
default-features = false
version = "2.0.0-rc5"
version = "2.0.0-rc6"
path = "../../../../frame/system"

[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-rc5"
version = "2.0.0-rc6"
path = "../../../../primitives/core"

[dev-dependencies.sp-io]
default-features = false
version = "2.0.0-rc5"
version = "2.0.0-rc6"
path = "../../../../primitives/io"

[dev-dependencies.sp-runtime]
default-features = false
version = "2.0.0-rc5"
version = "2.0.0-rc6"
path = "../../../../primitives/runtime"


Expand Down
1 change: 1 addition & 0 deletions bin/node-template/pallets/template/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
License: Unlicense
50 changes: 25 additions & 25 deletions bin/node-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-template-runtime"
version = "2.0.0-rc5"
version = "2.0.0-rc6"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
Expand All @@ -13,34 +13,34 @@ 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-rc5", default-features = false, path = "../../../frame/aura" }
pallet-balances = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/balances" }
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/support" }
pallet-grandpa = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/grandpa" }
pallet-randomness-collective-flip = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/randomness-collective-flip" }
pallet-sudo = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/sudo" }
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/system" }
pallet-timestamp = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/executive" }
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" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc5"}
sp-consensus-aura = { version = "0.8.0-rc5", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-rc5"}
sp-offchain = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/version" }
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" }

# Used for the node template's RPCs
frame-system-rpc-runtime-api = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
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/" }

template = { version = "2.0.0-rc5", default-features = false, path = "../pallets/template", package = "pallet-template" }
template = { version = "2.0.0-rc6", 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
34 changes: 17 additions & 17 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-rc5"
version = "0.8.0-rc6"
authors = ["Parity Technologies <[email protected]>"]
description = "Substrate node integration benchmarks."
edition = "2018"
Expand All @@ -10,27 +10,27 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"

[dependencies]
log = "0.4.8"
node-primitives = { version = "2.0.0-rc5", path = "../primitives" }
node-testing = { version = "2.0.0-rc5", path = "../testing" }
node-runtime = { version = "2.0.0-rc5", path = "../runtime" }
sc-cli = { version = "0.8.0-rc5", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-rc5", path = "../../../client/api/" }
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc5", path = "../../../primitives/state-machine" }
node-primitives = { version = "2.0.0-rc6", path = "../primitives" }
node-testing = { version = "2.0.0-rc6", path = "../testing" }
node-runtime = { version = "2.0.0-rc6", path = "../runtime" }
sc-cli = { version = "0.8.0-rc6", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0-rc6", path = "../../../client/api/" }
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../../primitives/state-machine" }
serde = "1.0.101"
serde_json = "1.0.41"
structopt = "0.3"
derive_more = "0.99.2"
kvdb = "0.7"
kvdb-rocksdb = "0.9"
sp-trie = { version = "2.0.0-rc5", path = "../../../primitives/trie" }
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
sp-consensus = { version = "0.8.0-rc5", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "2.0.0-rc5", path = "../../../primitives/transaction-pool" }
sc-basic-authorship = { version = "0.8.0-rc5", path = "../../../client/basic-authorship" }
sp-inherents = { version = "2.0.0-rc5", path = "../../../primitives/inherents" }
sp-finality-tracker = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/finality-tracker" }
sp-timestamp = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/timestamp" }
sp-trie = { version = "2.0.0-rc6", path = "../../../primitives/trie" }
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "2.0.0-rc6", path = "../../../primitives/transaction-pool" }
sc-basic-authorship = { version = "0.8.0-rc6", path = "../../../client/basic-authorship" }
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
sp-finality-tracker = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/finality-tracker" }
sp-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/timestamp" }
hash-db = "0.15.2"
tempfile = "3.1.0"
fs_extra = "1"
Expand All @@ -39,5 +39,5 @@ rand = { version = "0.7.2", features = ["small_rng"] }
lazy_static = "1.4.0"
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
parity-db = { version = "0.1.2" }
sc-transaction-pool = { version = "2.0.0-rc5", path = "../../../client/transaction-pool" }
sc-transaction-pool = { version = "2.0.0-rc6", path = "../../../client/transaction-pool" }
futures = { version = "0.3.4", features = ["thread-pool"] }
6 changes: 3 additions & 3 deletions bin/node/browser-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-browser-testing"
version = "2.0.0-rc5"
version = "2.0.0-rc6"
authors = ["Parity Technologies <[email protected]>"]
description = "Tests for the in-browser light client."
edition = "2018"
Expand All @@ -17,5 +17,5 @@ wasm-bindgen-futures = "0.4.10"
wasm-bindgen-test = "0.3.10"
futures = "0.3.4"

node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0-rc5"}
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0-rc5"}
node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0-rc6"}
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0-rc6"}
Loading

0 comments on commit be8bb18

Please sign in to comment.