Skip to content

Commit 5fc8a6f

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 cce544a commit 5fc8a6f

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-session"
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"
@@ -14,20 +14,20 @@ targets = ["x86_64-unknown-linux-gnu"]
1414
[dependencies]
1515
serde = { version = "1.0.101", optional = true }
1616
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
17-
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
18-
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
19-
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
20-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
21-
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/session" }
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-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
26-
sp-trie = { version = "2.0.0-rc4", optional = true, default-features = false, path = "../../primitives/trie" }
17+
sp-core = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/core" }
18+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/std" }
19+
sp-io = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/io" }
20+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/runtime" }
21+
sp-session = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/session" }
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-timestamp = { version = "2.0.0-rc5", default-features = false, path = "../timestamp" }
26+
sp-trie = { version = "2.0.0-rc5", optional = true, default-features = false, path = "../../primitives/trie" }
2727
impl-trait-for-tuples = "0.1.3"
2828

2929
[dev-dependencies]
30-
sp-application-crypto = { version = "2.0.0-rc4", path = "../../primitives/application-crypto" }
30+
sp-application-crypto = { version = "2.0.0-rc5", path = "../../primitives/application-crypto" }
3131
lazy_static = "1.4.0"
3232

3333
[features]

benchmarking/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-session-benchmarking"
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"
@@ -12,24 +12,24 @@ description = "FRAME sessions pallet benchmarking"
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
15-
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
16-
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/session" }
17-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
18-
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
19-
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
20-
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
21-
pallet-staking = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
22-
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../../session" }
15+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/std" }
16+
sp-session = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/session" }
17+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/runtime" }
18+
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../../system" }
19+
frame-benchmarking = { version = "2.0.0-rc5", default-features = false, path = "../../benchmarking" }
20+
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../../support" }
21+
pallet-staking = { version = "2.0.0-rc5", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
22+
pallet-session = { version = "2.0.0-rc5", default-features = false, path = "../../session" }
2323
rand = { version = "0.7.2", default-features = false }
2424

2525
[dev-dependencies]
2626
serde = { version = "1.0.101" }
2727
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
28-
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
29-
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
30-
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
31-
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
32-
pallet-balances = { version = "2.0.0-rc4", path = "../../balances" }
28+
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
29+
pallet-staking-reward-curve = { version = "2.0.0-rc5", path = "../../staking/reward-curve" }
30+
sp-io ={ version = "2.0.0-rc5", path = "../../../primitives/io" }
31+
pallet-timestamp = { version = "2.0.0-rc5", path = "../../timestamp" }
32+
pallet-balances = { version = "2.0.0-rc5", path = "../../balances" }
3333

3434
[features]
3535
default = ["std"]

0 commit comments

Comments
 (0)