Skip to content

Commit 40b0555

Browse files
authored
Fixup cargo unleash (#6689)
* Bumping to rc5 * Revert "Bumping to rc5" This reverts commit 5a63a8230e5a12db1b4ce4ac62e4967c52291da7. * Bumping for rc5, correctly this time
1 parent c59aa12 commit 40b0555

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

Cargo.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-staking"
3-
version = "2.0.0-rc4"
3+
version = "2.0.0-rc5"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -15,29 +15,29 @@ targets = ["x86_64-unknown-linux-gnu"]
1515
static_assertions = "1.1.0"
1616
serde = { version = "1.0.101", optional = true }
1717
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
18-
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
19-
sp-npos-elections = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/npos-elections" }
20-
sp-io ={ version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
21-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
22-
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
23-
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
24-
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
25-
pallet-session = { version = "2.0.0-rc4", default-features = false, features = ["historical"], path = "../session" }
26-
pallet-authorship = { version = "2.0.0-rc4", default-features = false, path = "../authorship" }
27-
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
18+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/std" }
19+
sp-npos-elections = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/npos-elections" }
20+
sp-io ={ version = "2.0.0-rc5", default-features = false, path = "../../primitives/io" }
21+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/runtime" }
22+
sp-staking = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/staking" }
23+
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../support" }
24+
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../system" }
25+
pallet-session = { version = "2.0.0-rc5", default-features = false, features = ["historical"], path = "../session" }
26+
pallet-authorship = { version = "2.0.0-rc5", default-features = false, path = "../authorship" }
27+
sp-application-crypto = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/application-crypto" }
2828

2929
# Optional imports for benchmarking
30-
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
30+
frame-benchmarking = { version = "2.0.0-rc5", default-features = false, path = "../benchmarking", optional = true }
3131
rand_chacha = { version = "0.2", default-features = false, optional = true }
3232

3333
[dev-dependencies]
34-
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
35-
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
36-
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
37-
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
38-
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../staking/reward-curve" }
39-
substrate-test-utils = { version = "2.0.0-rc4", path = "../../test-utils" }
40-
frame-benchmarking = { version = "2.0.0-rc4", path = "../benchmarking" }
34+
sp-core = { version = "2.0.0-rc5", path = "../../primitives/core" }
35+
sp-storage = { version = "2.0.0-rc5", path = "../../primitives/storage" }
36+
pallet-balances = { version = "2.0.0-rc5", path = "../balances" }
37+
pallet-timestamp = { version = "2.0.0-rc5", path = "../timestamp" }
38+
pallet-staking-reward-curve = { version = "2.0.0-rc5", path = "../staking/reward-curve" }
39+
substrate-test-utils = { version = "2.0.0-rc5", path = "../../test-utils" }
40+
frame-benchmarking = { version = "2.0.0-rc5", path = "../benchmarking" }
4141
rand_chacha = { version = "0.2" }
4242
parking_lot = "0.10.2"
4343
env_logger = "0.7.1"

fuzzer/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
1515
[dependencies]
1616
honggfuzz = "0.5"
1717
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
18-
pallet-staking = { version = "2.0.0-rc4", path = "..", features = ["runtime-benchmarks"] }
19-
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../reward-curve" }
20-
pallet-session = { version = "2.0.0-rc4", path = "../../session" }
21-
pallet-indices = { version = "2.0.0-rc4", path = "../../indices" }
22-
pallet-balances = { version = "2.0.0-rc4", path = "../../balances" }
23-
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
24-
frame-system = { version = "2.0.0-rc4", path = "../../system" }
25-
frame-support = { version = "2.0.0-rc4", path = "../../support" }
26-
sp-std = { version = "2.0.0-rc4", path = "../../../primitives/std" }
27-
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
28-
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
29-
sp-npos-elections = { version = "2.0.0-rc4", path = "../../../primitives/npos-elections" }
30-
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
18+
pallet-staking = { version = "2.0.0-rc5", path = "..", features = ["runtime-benchmarks"] }
19+
pallet-staking-reward-curve = { version = "2.0.0-rc5", path = "../reward-curve" }
20+
pallet-session = { version = "2.0.0-rc5", path = "../../session" }
21+
pallet-indices = { version = "2.0.0-rc5", path = "../../indices" }
22+
pallet-balances = { version = "2.0.0-rc5", path = "../../balances" }
23+
pallet-timestamp = { version = "2.0.0-rc5", path = "../../timestamp" }
24+
frame-system = { version = "2.0.0-rc5", path = "../../system" }
25+
frame-support = { version = "2.0.0-rc5", path = "../../support" }
26+
sp-std = { version = "2.0.0-rc5", path = "../../../primitives/std" }
27+
sp-io ={ version = "2.0.0-rc5", path = "../../../primitives/io" }
28+
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
29+
sp-npos-elections = { version = "2.0.0-rc5", path = "../../../primitives/npos-elections" }
30+
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
3131

3232
[[bin]]
3333
name = "submit_solution"

reward-curve/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-staking-reward-curve"
3-
version = "2.0.0-rc4"
3+
version = "2.0.0-rc5"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -21,4 +21,4 @@ proc-macro2 = "1.0.6"
2121
proc-macro-crate = "0.1.4"
2222

2323
[dev-dependencies]
24-
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
24+
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }

0 commit comments

Comments
 (0)