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

Commit be8bb18

Browse files
authored
prepping for releasing rc6 (#6922)
* Bump version * update test-utils crates to be ready for publishing * adding changelog * Adding automaticly generated READMEs * fixing versions * another version mishap
1 parent 9c679b3 commit be8bb18

File tree

335 files changed

+5490
-1879
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

335 files changed

+5490
-1879
lines changed

Cargo.lock

+185-185
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node-template/node/Cargo.toml

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-template"
3-
version = "2.0.0-rc5"
3+
version = "2.0.0-rc6"
44
authors = ["Anonymous"]
55
description = "A new FRAME-based Substrate node, ready for hacking."
66
edition = "2018"
@@ -18,34 +18,34 @@ name = "node-template"
1818
[dependencies]
1919
structopt = "0.3.8"
2020

21-
sc-cli = { version = "0.8.0-rc5", path = "../../../client/cli", features = ["wasmtime"] }
22-
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
23-
sc-executor = { version = "0.8.0-rc5", path = "../../../client/executor", features = ["wasmtime"] }
24-
sc-service = { version = "0.8.0-rc5", path = "../../../client/service", features = ["wasmtime"] }
25-
sp-inherents = { version = "2.0.0-rc5", path = "../../../primitives/inherents" }
26-
sc-transaction-pool = { version = "2.0.0-rc5", path = "../../../client/transaction-pool" }
27-
sp-transaction-pool = { version = "2.0.0-rc5", path = "../../../primitives/transaction-pool" }
28-
sc-consensus-aura = { version = "0.8.0-rc5", path = "../../../client/consensus/aura" }
29-
sp-consensus-aura = { version = "0.8.0-rc5", path = "../../../primitives/consensus/aura" }
30-
sp-consensus = { version = "0.8.0-rc5", path = "../../../primitives/consensus/common" }
31-
sc-consensus = { version = "0.8.0-rc5", path = "../../../client/consensus/common" }
32-
sc-finality-grandpa = { version = "0.8.0-rc5", path = "../../../client/finality-grandpa" }
33-
sp-finality-grandpa = { version = "2.0.0-rc5", path = "../../../primitives/finality-grandpa" }
34-
sc-client-api = { version = "2.0.0-rc5", path = "../../../client/api" }
35-
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
21+
sc-cli = { version = "0.8.0-rc6", path = "../../../client/cli", features = ["wasmtime"] }
22+
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
23+
sc-executor = { version = "0.8.0-rc6", path = "../../../client/executor", features = ["wasmtime"] }
24+
sc-service = { version = "0.8.0-rc6", path = "../../../client/service", features = ["wasmtime"] }
25+
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
26+
sc-transaction-pool = { version = "2.0.0-rc6", path = "../../../client/transaction-pool" }
27+
sp-transaction-pool = { version = "2.0.0-rc6", path = "../../../primitives/transaction-pool" }
28+
sc-consensus-aura = { version = "0.8.0-rc6", path = "../../../client/consensus/aura" }
29+
sp-consensus-aura = { version = "0.8.0-rc6", path = "../../../primitives/consensus/aura" }
30+
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
31+
sc-consensus = { version = "0.8.0-rc6", path = "../../../client/consensus/common" }
32+
sc-finality-grandpa = { version = "0.8.0-rc6", path = "../../../client/finality-grandpa" }
33+
sp-finality-grandpa = { version = "2.0.0-rc6", path = "../../../primitives/finality-grandpa" }
34+
sc-client-api = { version = "2.0.0-rc6", path = "../../../client/api" }
35+
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
3636

3737
# These dependencies are used for the node template's RPCs
3838
jsonrpc-core = "14.0.3"
39-
sc-rpc = { version = "2.0.0-rc5", path = "../../../client/rpc" }
40-
sp-api = { version = "2.0.0-rc5", path = "../../../primitives/api" }
41-
sc-rpc-api = { version = "0.8.0-rc5", path = "../../../client/rpc-api" }
42-
sp-blockchain = { version = "2.0.0-rc5", path = "../../../primitives/blockchain" }
43-
sp-block-builder = { version = "2.0.0-rc5", path = "../../../primitives/block-builder" }
44-
sc-basic-authorship = { version = "0.8.0-rc5", path = "../../../client/basic-authorship" }
45-
substrate-frame-rpc-system = { version = "2.0.0-rc5", path = "../../../utils/frame/rpc/system" }
46-
pallet-transaction-payment-rpc = { version = "2.0.0-rc5", path = "../../../frame/transaction-payment/rpc/" }
39+
sc-rpc = { version = "2.0.0-rc6", path = "../../../client/rpc" }
40+
sp-api = { version = "2.0.0-rc6", path = "../../../primitives/api" }
41+
sc-rpc-api = { version = "0.8.0-rc6", path = "../../../client/rpc-api" }
42+
sp-blockchain = { version = "2.0.0-rc6", path = "../../../primitives/blockchain" }
43+
sp-block-builder = { version = "2.0.0-rc6", path = "../../../primitives/block-builder" }
44+
sc-basic-authorship = { version = "0.8.0-rc6", path = "../../../client/basic-authorship" }
45+
substrate-frame-rpc-system = { version = "2.0.0-rc6", path = "../../../utils/frame/rpc/system" }
46+
pallet-transaction-payment-rpc = { version = "2.0.0-rc6", path = "../../../frame/transaction-payment/rpc/" }
4747

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

5050
[build-dependencies]
51-
substrate-build-script-utils = { version = "2.0.0-rc5", path = "../../../utils/build-script-utils" }
51+
substrate-build-script-utils = { version = "2.0.0-rc6", path = "../../../utils/build-script-utils" }

bin/node-template/pallets/template/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ['Anonymous']
33
edition = '2018'
44
name = 'pallet-template'
5-
version = "2.0.0-rc5"
5+
version = "2.0.0-rc6"
66
license = "Unlicense"
77
homepage = "https://substrate.dev"
88
repository = "https://github.com/paritytech/substrate/"
@@ -16,27 +16,27 @@ codec = { package = "parity-scale-codec", version = "1.3.4", default-features =
1616

1717
[dependencies.frame-support]
1818
default-features = false
19-
version = "2.0.0-rc5"
19+
version = "2.0.0-rc6"
2020
path = "../../../../frame/support"
2121

2222
[dependencies.frame-system]
2323
default-features = false
24-
version = "2.0.0-rc5"
24+
version = "2.0.0-rc6"
2525
path = "../../../../frame/system"
2626

2727
[dev-dependencies.sp-core]
2828
default-features = false
29-
version = "2.0.0-rc5"
29+
version = "2.0.0-rc6"
3030
path = "../../../../primitives/core"
3131

3232
[dev-dependencies.sp-io]
3333
default-features = false
34-
version = "2.0.0-rc5"
34+
version = "2.0.0-rc6"
3535
path = "../../../../primitives/io"
3636

3737
[dev-dependencies.sp-runtime]
3838
default-features = false
39-
version = "2.0.0-rc5"
39+
version = "2.0.0-rc6"
4040
path = "../../../../primitives/runtime"
4141

4242

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
License: Unlicense

bin/node-template/runtime/Cargo.toml

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-template-runtime"
3-
version = "2.0.0-rc5"
3+
version = "2.0.0-rc6"
44
authors = ["Anonymous"]
55
edition = "2018"
66
license = "Unlicense"
@@ -13,34 +13,34 @@ targets = ["x86_64-unknown-linux-gnu"]
1313
[dependencies]
1414
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
1515

16-
pallet-aura = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/aura" }
17-
pallet-balances = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/balances" }
18-
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/support" }
19-
pallet-grandpa = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/grandpa" }
20-
pallet-randomness-collective-flip = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/randomness-collective-flip" }
21-
pallet-sudo = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/sudo" }
22-
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/system" }
23-
pallet-timestamp = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/timestamp" }
24-
pallet-transaction-payment = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/transaction-payment" }
25-
frame-executive = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/executive" }
16+
pallet-aura = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/aura" }
17+
pallet-balances = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/balances" }
18+
frame-support = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/support" }
19+
pallet-grandpa = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/grandpa" }
20+
pallet-randomness-collective-flip = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/randomness-collective-flip" }
21+
pallet-sudo = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/sudo" }
22+
frame-system = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/system" }
23+
pallet-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/timestamp" }
24+
pallet-transaction-payment = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/transaction-payment" }
25+
frame-executive = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/executive" }
2626
serde = { version = "1.0.101", optional = true, features = ["derive"] }
27-
sp-api = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/api" }
28-
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc5"}
29-
sp-consensus-aura = { version = "0.8.0-rc5", default-features = false, path = "../../../primitives/consensus/aura" }
30-
sp-core = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/core" }
31-
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-rc5"}
32-
sp-offchain = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/offchain" }
33-
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/runtime" }
34-
sp-session = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/session" }
35-
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/std" }
36-
sp-transaction-pool = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/transaction-pool" }
37-
sp-version = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/version" }
27+
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/api" }
28+
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-rc6"}
29+
sp-consensus-aura = { version = "0.8.0-rc6", default-features = false, path = "../../../primitives/consensus/aura" }
30+
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/core" }
31+
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-rc6"}
32+
sp-offchain = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/offchain" }
33+
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/runtime" }
34+
sp-session = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/session" }
35+
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/std" }
36+
sp-transaction-pool = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/transaction-pool" }
37+
sp-version = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/version" }
3838

3939
# Used for the node template's RPCs
40-
frame-system-rpc-runtime-api = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
41-
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc5", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
40+
frame-system-rpc-runtime-api = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
41+
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc6", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
4242

43-
template = { version = "2.0.0-rc5", default-features = false, path = "../pallets/template", package = "pallet-template" }
43+
template = { version = "2.0.0-rc6", default-features = false, path = "../pallets/template", package = "pallet-template" }
4444

4545
[build-dependencies]
4646
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }

bin/node/bench/Cargo.toml

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-bench"
3-
version = "0.8.0-rc5"
3+
version = "0.8.0-rc6"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Substrate node integration benchmarks."
66
edition = "2018"
@@ -10,27 +10,27 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
1010

1111
[dependencies]
1212
log = "0.4.8"
13-
node-primitives = { version = "2.0.0-rc5", path = "../primitives" }
14-
node-testing = { version = "2.0.0-rc5", path = "../testing" }
15-
node-runtime = { version = "2.0.0-rc5", path = "../runtime" }
16-
sc-cli = { version = "0.8.0-rc5", path = "../../../client/cli" }
17-
sc-client-api = { version = "2.0.0-rc5", path = "../../../client/api/" }
18-
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
19-
sp-state-machine = { version = "0.8.0-rc5", path = "../../../primitives/state-machine" }
13+
node-primitives = { version = "2.0.0-rc6", path = "../primitives" }
14+
node-testing = { version = "2.0.0-rc6", path = "../testing" }
15+
node-runtime = { version = "2.0.0-rc6", path = "../runtime" }
16+
sc-cli = { version = "0.8.0-rc6", path = "../../../client/cli" }
17+
sc-client-api = { version = "2.0.0-rc6", path = "../../../client/api/" }
18+
sp-runtime = { version = "2.0.0-rc6", path = "../../../primitives/runtime" }
19+
sp-state-machine = { version = "0.8.0-rc6", path = "../../../primitives/state-machine" }
2020
serde = "1.0.101"
2121
serde_json = "1.0.41"
2222
structopt = "0.3"
2323
derive_more = "0.99.2"
2424
kvdb = "0.7"
2525
kvdb-rocksdb = "0.9"
26-
sp-trie = { version = "2.0.0-rc5", path = "../../../primitives/trie" }
27-
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
28-
sp-consensus = { version = "0.8.0-rc5", path = "../../../primitives/consensus/common" }
29-
sp-transaction-pool = { version = "2.0.0-rc5", path = "../../../primitives/transaction-pool" }
30-
sc-basic-authorship = { version = "0.8.0-rc5", path = "../../../client/basic-authorship" }
31-
sp-inherents = { version = "2.0.0-rc5", path = "../../../primitives/inherents" }
32-
sp-finality-tracker = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/finality-tracker" }
33-
sp-timestamp = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/timestamp" }
26+
sp-trie = { version = "2.0.0-rc6", path = "../../../primitives/trie" }
27+
sp-core = { version = "2.0.0-rc6", path = "../../../primitives/core" }
28+
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
29+
sp-transaction-pool = { version = "2.0.0-rc6", path = "../../../primitives/transaction-pool" }
30+
sc-basic-authorship = { version = "0.8.0-rc6", path = "../../../client/basic-authorship" }
31+
sp-inherents = { version = "2.0.0-rc6", path = "../../../primitives/inherents" }
32+
sp-finality-tracker = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/finality-tracker" }
33+
sp-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../../primitives/timestamp" }
3434
hash-db = "0.15.2"
3535
tempfile = "3.1.0"
3636
fs_extra = "1"
@@ -39,5 +39,5 @@ rand = { version = "0.7.2", features = ["small_rng"] }
3939
lazy_static = "1.4.0"
4040
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
4141
parity-db = { version = "0.1.2" }
42-
sc-transaction-pool = { version = "2.0.0-rc5", path = "../../../client/transaction-pool" }
42+
sc-transaction-pool = { version = "2.0.0-rc6", path = "../../../client/transaction-pool" }
4343
futures = { version = "0.3.4", features = ["thread-pool"] }

bin/node/browser-testing/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-browser-testing"
3-
version = "2.0.0-rc5"
3+
version = "2.0.0-rc6"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Tests for the in-browser light client."
66
edition = "2018"
@@ -17,5 +17,5 @@ wasm-bindgen-futures = "0.4.10"
1717
wasm-bindgen-test = "0.3.10"
1818
futures = "0.3.4"
1919

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

0 commit comments

Comments
 (0)