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

Commit e287915

Browse files
authored
Intent to release rc3 (#6290)
1 parent cc5b3a6 commit e287915

File tree

187 files changed

+1820
-1799
lines changed

Some content is hidden

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

187 files changed

+1820
-1799
lines changed

Cargo.lock

Lines changed: 180 additions & 180 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node-template/node/Cargo.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-template"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0-rc3"
44
authors = ["Anonymous"]
55
description = "Substrate Node template"
66
edition = "2018"
@@ -21,25 +21,25 @@ log = "0.4.8"
2121
structopt = "0.3.8"
2222
parking_lot = "0.10.0"
2323

24-
sc-cli = { version = "0.8.0-rc2", path = "../../../client/cli" }
25-
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
26-
sc-executor = { version = "0.8.0-rc2", path = "../../../client/executor" }
27-
sc-service = { version = "0.8.0-rc2", path = "../../../client/service" }
28-
sp-inherents = { version = "2.0.0-rc2", path = "../../../primitives/inherents" }
29-
sc-transaction-pool = { version = "2.0.0-rc2", path = "../../../client/transaction-pool" }
30-
sp-transaction-pool = { version = "2.0.0-rc2", path = "../../../primitives/transaction-pool" }
31-
sc-network = { version = "0.8.0-rc2", path = "../../../client/network" }
32-
sc-consensus-aura = { version = "0.8.0-rc2", path = "../../../client/consensus/aura" }
33-
sp-consensus-aura = { version = "0.8.0-rc2", path = "../../../primitives/consensus/aura" }
34-
sp-consensus = { version = "0.8.0-rc2", path = "../../../primitives/consensus/common" }
35-
sc-consensus = { version = "0.8.0-rc2", path = "../../../client/consensus/common" }
36-
sc-finality-grandpa = { version = "0.8.0-rc2", path = "../../../client/finality-grandpa" }
37-
sp-finality-grandpa = { version = "2.0.0-rc2", path = "../../../primitives/finality-grandpa" }
38-
sc-client-api = { version = "2.0.0-rc2", path = "../../../client/api" }
39-
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
40-
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-rc2"}
24+
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli" }
25+
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
26+
sc-executor = { version = "0.8.0-rc3", path = "../../../client/executor" }
27+
sc-service = { version = "0.8.0-rc3", path = "../../../client/service" }
28+
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
29+
sc-transaction-pool = { version = "2.0.0-rc3", path = "../../../client/transaction-pool" }
30+
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }
31+
sc-network = { version = "0.8.0-rc3", path = "../../../client/network" }
32+
sc-consensus-aura = { version = "0.8.0-rc3", path = "../../../client/consensus/aura" }
33+
sp-consensus-aura = { version = "0.8.0-rc3", path = "../../../primitives/consensus/aura" }
34+
sp-consensus = { version = "0.8.0-rc3", path = "../../../primitives/consensus/common" }
35+
sc-consensus = { version = "0.8.0-rc3", path = "../../../client/consensus/common" }
36+
sc-finality-grandpa = { version = "0.8.0-rc3", path = "../../../client/finality-grandpa" }
37+
sp-finality-grandpa = { version = "2.0.0-rc3", path = "../../../primitives/finality-grandpa" }
38+
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api" }
39+
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
40+
sc-basic-authorship = { path = "../../../client/basic-authorship", version = "0.8.0-rc3"}
4141

42-
node-template-runtime = { version = "2.0.0-rc2", path = "../runtime" }
42+
node-template-runtime = { version = "2.0.0-rc3", path = "../runtime" }
4343

4444
[build-dependencies]
45-
substrate-build-script-utils = { version = "2.0.0-rc2", path = "../../../utils/build-script-utils" }
45+
substrate-build-script-utils = { version = "2.0.0-rc3", path = "../../../utils/build-script-utils" }

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

Lines changed: 6 additions & 6 deletions
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-rc2"
5+
version = "2.0.0-rc3"
66
license = "Unlicense"
77
homepage = "https://substrate.dev"
88
repository = "https://github.com/paritytech/substrate/"
@@ -16,26 +16,26 @@ codec = { package = "parity-scale-codec", version = "1.3.0", default-features =
1616

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

2222
[dependencies.frame-system]
2323
default-features = false
24-
version = "2.0.0-rc2"
24+
version = "2.0.0-rc3"
2525
path = "../../../../frame/system"
2626
[dev-dependencies.sp-core]
2727
default-features = false
28-
version = "2.0.0-rc2"
28+
version = "2.0.0-rc3"
2929
path = "../../../../primitives/core"
3030

3131
[dev-dependencies.sp-io]
3232
default-features = false
33-
version = "2.0.0-rc2"
33+
version = "2.0.0-rc3"
3434
path = "../../../../primitives/io"
3535

3636
[dev-dependencies.sp-runtime]
3737
default-features = false
38-
version = "2.0.0-rc2"
38+
version = "2.0.0-rc3"
3939
path = "../../../../primitives/runtime"
4040

4141

bin/node-template/runtime/Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-template-runtime"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0-rc3"
44
authors = ["Anonymous"]
55
edition = "2018"
66
license = "Unlicense"
@@ -13,31 +13,31 @@ targets = ["x86_64-unknown-linux-gnu"]
1313
[dependencies]
1414
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
1515

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

40-
template = { version = "2.0.0-rc2", default-features = false, path = "../pallets/template", package = "pallet-template" }
40+
template = { version = "2.0.0-rc3", default-features = false, path = "../pallets/template", package = "pallet-template" }
4141

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

bin/node/bench/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-bench"
3-
version = "0.8.0-rc2"
3+
version = "0.8.0-rc3"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "Substrate node integration benchmarks."
66
edition = "2018"
@@ -10,21 +10,21 @@ 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-rc2", path = "../primitives" }
14-
node-testing = { version = "2.0.0-rc2", path = "../testing" }
15-
node-runtime = { version = "2.0.0-rc2", path = "../runtime" }
16-
sc-cli = { version = "0.8.0-rc2", path = "../../../client/cli" }
17-
sc-client-api = { version = "2.0.0-rc2", path = "../../../client/api/" }
18-
sp-runtime = { version = "2.0.0-rc2", path = "../../../primitives/runtime" }
19-
sp-state-machine = { version = "0.8.0-rc2", path = "../../../primitives/state-machine" }
13+
node-primitives = { version = "2.0.0-rc3", path = "../primitives" }
14+
node-testing = { version = "2.0.0-rc3", path = "../testing" }
15+
node-runtime = { version = "2.0.0-rc3", path = "../runtime" }
16+
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli" }
17+
sc-client-api = { version = "2.0.0-rc3", path = "../../../client/api/" }
18+
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
19+
sp-state-machine = { version = "0.8.0-rc3", 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.6"
2525
kvdb-rocksdb = "0.8"
26-
sp-trie = { version = "2.0.0-rc2", path = "../../../primitives/trie" }
27-
sp-core = { version = "2.0.0-rc2", path = "../../../primitives/core" }
26+
sp-trie = { version = "2.0.0-rc3", path = "../../../primitives/trie" }
27+
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
2828
hash-db = "0.15.2"
2929
tempfile = "3.1.0"
3030
fs_extra = "1"

bin/node/browser-testing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node-browser-testing"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0-rc3"
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-rc2"}
21-
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0-rc2"}
20+
node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0-rc3"}
21+
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0-rc3"}

0 commit comments

Comments
 (0)