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

Commit 2bc071f

Browse files
authored
Release: Bump SP crates to release on crates.io (#14237)
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
1 parent 48817b5 commit 2bc071f

File tree

228 files changed

+922
-922
lines changed

Some content is hidden

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

228 files changed

+922
-922
lines changed

Cargo.lock

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

bin/node-template/node/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ clap = { version = "4.2.5", features = ["derive"] }
2121
futures = { version = "0.3.21", features = ["thread-pool"]}
2222

2323
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
24-
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
24+
sp-core = { version = "8.0.0", path = "../../../primitives/core" }
2525
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
2626
sc-network = { version = "0.10.0-dev", path = "../../../client/network" }
2727
sc-service = { version = "0.10.0-dev", path = "../../../client/service" }
@@ -37,11 +37,11 @@ sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/commo
3737
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../../../client/consensus/grandpa" }
3838
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
3939
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
40-
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
41-
sp-io = { version = "7.0.0", path = "../../../primitives/io" }
40+
sp-runtime = { version = "8.0.0", path = "../../../primitives/runtime" }
41+
sp-io = { version = "8.0.0", path = "../../../primitives/io" }
4242
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
4343
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
44-
sp-keyring = { version = "7.0.0", path = "../../../primitives/keyring" }
44+
sp-keyring = { version = "8.0.0", path = "../../../primitives/keyring" }
4545
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
4646
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
4747

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ frame-support = { version = "4.0.0-dev", default-features = false, path = "../..
2222
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../../frame/system" }
2323

2424
[dev-dependencies]
25-
sp-core = { version = "7.0.0", path = "../../../../primitives/core" }
26-
sp-io = { version = "7.0.0", path = "../../../../primitives/io" }
27-
sp-runtime = { version = "7.0.0", path = "../../../../primitives/runtime" }
25+
sp-core = { version = "8.0.0", path = "../../../../primitives/core" }
26+
sp-io = { version = "8.0.0", path = "../../../../primitives/io" }
27+
sp-runtime = { version = "8.0.0", path = "../../../../primitives/runtime" }
2828

2929
[features]
3030
default = ["std"]

bin/node-template/runtime/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../pri
3030
sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/block-builder"}
3131
sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/aura" }
3232
sp-consensus-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/consensus/grandpa" }
33-
sp-core = { version = "7.0.0", default-features = false, path = "../../../primitives/core" }
33+
sp-core = { version = "8.0.0", default-features = false, path = "../../../primitives/core" }
3434
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents"}
3535
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
36-
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
36+
sp-runtime = { version = "8.0.0", default-features = false, path = "../../../primitives/runtime" }
3737
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
38-
sp-std = { version = "5.0.0", default-features = false, path = "../../../primitives/std" }
38+
sp-std = { version = "6.0.0", default-features = false, path = "../../../primitives/std" }
3939
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
40-
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }
40+
sp-version = { version = "6.0.0", default-features = false, path = "../../../primitives/version" }
4141

4242
# Used for the node template's RPCs
4343
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }

bin/node/bench/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ node-primitives = { version = "2.0.0", path = "../primitives" }
1919
node-testing = { version = "3.0.0-dev", path = "../testing" }
2020
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
2121
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
22-
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
23-
sp-state-machine = { version = "0.13.0", path = "../../../primitives/state-machine" }
22+
sp-runtime = { version = "8.0.0", path = "../../../primitives/runtime" }
23+
sp-state-machine = { version = "0.14.0", path = "../../../primitives/state-machine" }
2424
serde = "1.0.136"
2525
serde_json = "1.0.85"
2626
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
2727
kvdb = "0.13.0"
2828
kvdb-rocksdb = "0.19.0"
29-
sp-trie = { version = "7.0.0", path = "../../../primitives/trie" }
30-
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
29+
sp-trie = { version = "8.0.0", path = "../../../primitives/trie" }
30+
sp-core = { version = "8.0.0", path = "../../../primitives/core" }
3131
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
3232
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
3333
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
3434
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
35-
sp-tracing = { version = "6.0.0", path = "../../../primitives/tracing" }
35+
sp-tracing = { version = "7.0.0", path = "../../../primitives/tracing" }
3636
hash-db = "0.16.0"
3737
tempfile = "3.1.0"
3838
fs_extra = "1"

bin/node/cli/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ sp-authority-discovery = { version = "4.0.0-dev", path = "../../../primitives/au
4949
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
5050
grandpa-primitives = { version = "4.0.0-dev", package = "sp-consensus-grandpa", path = "../../../primitives/consensus/grandpa" }
5151
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
52-
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
53-
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
52+
sp-core = { version = "8.0.0", path = "../../../primitives/core" }
53+
sp-runtime = { version = "8.0.0", path = "../../../primitives/runtime" }
5454
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
5555
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
56-
sp-keyring = { version = "7.0.0", path = "../../../primitives/keyring" }
57-
sp-keystore = { version = "0.13.0", path = "../../../primitives/keystore" }
56+
sp-keyring = { version = "8.0.0", path = "../../../primitives/keyring" }
57+
sp-keystore = { version = "0.14.0", path = "../../../primitives/keystore" }
5858
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
5959
sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" }
6060
sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../../primitives/transaction-storage-proof" }
@@ -114,7 +114,7 @@ sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/
114114
sc-consensus-epochs = { version = "0.10.0-dev", path = "../../../client/consensus/epochs" }
115115
sc-service-test = { version = "2.0.0", path = "../../../client/service/test" }
116116
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
117-
sp-tracing = { version = "6.0.0", path = "../../../primitives/tracing" }
117+
sp-tracing = { version = "7.0.0", path = "../../../primitives/tracing" }
118118
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
119119
futures = "0.3.21"
120120
tempfile = "3.1.0"

bin/node/executor/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarkin
1919
node-primitives = { version = "2.0.0", path = "../primitives" }
2020
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
2121
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
22-
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
23-
sp-keystore = { version = "0.13.0", path = "../../../primitives/keystore" }
24-
sp-state-machine = { version = "0.13.0", path = "../../../primitives/state-machine" }
25-
sp-tracing = { version = "6.0.0", path = "../../../primitives/tracing" }
26-
sp-trie = { version = "7.0.0", path = "../../../primitives/trie" }
22+
sp-core = { version = "8.0.0", path = "../../../primitives/core" }
23+
sp-keystore = { version = "0.14.0", path = "../../../primitives/keystore" }
24+
sp-state-machine = { version = "0.14.0", path = "../../../primitives/state-machine" }
25+
sp-tracing = { version = "7.0.0", path = "../../../primitives/tracing" }
26+
sp-trie = { version = "8.0.0", path = "../../../primitives/trie" }
2727
sp-statement-store = { version = "4.0.0-dev", path = "../../../primitives/statement-store" }
2828

2929
[dev-dependencies]
@@ -41,12 +41,12 @@ pallet-sudo = { version = "4.0.0-dev", path = "../../../frame/sudo" }
4141
pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
4242
pallet-treasury = { version = "4.0.0-dev", path = "../../../frame/treasury" }
4343
pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" }
44-
sp-application-crypto = { version = "7.0.0", path = "../../../primitives/application-crypto" }
44+
sp-application-crypto = { version = "8.0.0", path = "../../../primitives/application-crypto" }
4545
pallet-root-testing = { version = "1.0.0-dev", path = "../../../frame/root-testing" }
4646
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
47-
sp-externalities = { version = "0.13.0", path = "../../../primitives/externalities" }
48-
sp-keyring = { version = "7.0.0", path = "../../../primitives/keyring" }
49-
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
47+
sp-externalities = { version = "0.14.0", path = "../../../primitives/externalities" }
48+
sp-keyring = { version = "8.0.0", path = "../../../primitives/keyring" }
49+
sp-runtime = { version = "8.0.0", path = "../../../primitives/runtime" }
5050

5151
[features]
5252
stress-test = []

bin/node/inspect/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
2121
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
2222
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" }
2323
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
24-
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
25-
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
24+
sp-core = { version = "8.0.0", path = "../../../primitives/core" }
25+
sp-runtime = { version = "8.0.0", path = "../../../primitives/runtime" }

bin/node/primitives/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ codec = { package = "parity-scale-codec", version = "3.2.2", default-features =
1818
] }
1919
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
2020
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
21-
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../../primitives/application-crypto" }
22-
sp-core = { version = "7.0.0", default-features = false, path = "../../../primitives/core" }
23-
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
21+
sp-application-crypto = { version = "8.0.0", default-features = false, path = "../../../primitives/application-crypto" }
22+
sp-core = { version = "8.0.0", default-features = false, path = "../../../primitives/core" }
23+
sp-runtime = { version = "8.0.0", default-features = false, path = "../../../primitives/runtime" }
2424

2525
[features]
2626
default = ["std"]

bin/node/rpc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-bu
3333
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
3434
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
3535
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
36-
sp-keystore = { version = "0.13.0", path = "../../../primitives/keystore" }
37-
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
36+
sp-keystore = { version = "0.14.0", path = "../../../primitives/keystore" }
37+
sp-runtime = { version = "8.0.0", path = "../../../primitives/runtime" }
3838
sp-statement-store = { version = "4.0.0-dev", path = "../../../primitives/statement-store" }
3939
substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" }
4040
substrate-state-trie-migration-rpc = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/state-trie-migration-rpc/" }

bin/node/runtime/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ sp-block-builder = { path = "../../../primitives/block-builder", default-feature
3535
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" }
3636
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" }
3737
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
38-
sp-core = { version = "7.0.0", default-features = false, path = "../../../primitives/core" }
39-
sp-std = { version = "5.0.0", default-features = false, path = "../../../primitives/std" }
38+
sp-core = { version = "8.0.0", default-features = false, path = "../../../primitives/core" }
39+
sp-std = { version = "6.0.0", default-features = false, path = "../../../primitives/std" }
4040
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
41-
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
41+
sp-runtime = { version = "8.0.0", default-features = false, path = "../../../primitives/runtime" }
4242
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
4343
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
4444
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
4545
sp-statement-store = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/statement-store" }
46-
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }
47-
sp-io = { version = "7.0.0", default-features = false, path = "../../../primitives/io" }
46+
sp-version = { version = "6.0.0", default-features = false, path = "../../../primitives/version" }
47+
sp-io = { version = "8.0.0", default-features = false, path = "../../../primitives/io" }
4848

4949
# frame dependencies
5050
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" }

0 commit comments

Comments
 (0)