Skip to content

Commit 18927c4

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 7b9fcf0 commit 18927c4

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

Cargo.toml

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

1414
[dependencies]
15-
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
15+
pallet-balances = { version = "2.0.0-rc5", default-features = false, path = "../balances" }
1616
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
17-
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
17+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/std" }
1818
serde = { version = "1.0.101", optional = true }
19-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
20-
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
21-
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
22-
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
19+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/runtime" }
20+
sp-staking = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/staking" }
21+
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../support" }
22+
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../system" }
2323

2424
[dev-dependencies]
25-
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
26-
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
25+
sp-io = { version = "2.0.0-rc5", path = "../../primitives/io" }
26+
sp-core = { version = "2.0.0-rc5", path = "../../primitives/core" }
2727

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

benchmarking/Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-offences-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"
@@ -13,27 +13,27 @@ targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
1515
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
16-
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
17-
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
18-
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
19-
pallet-babe = { version = "2.0.0-rc4", default-features = false, path = "../../babe" }
20-
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../../balances" }
21-
pallet-grandpa = { version = "2.0.0-rc4", default-features = false, path = "../../grandpa" }
22-
pallet-im-online = { version = "2.0.0-rc4", default-features = false, path = "../../im-online" }
23-
pallet-offences = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
24-
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../../session" }
25-
pallet-staking = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
26-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
27-
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/staking" }
28-
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
16+
frame-benchmarking = { version = "2.0.0-rc5", default-features = false, path = "../../benchmarking" }
17+
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../../support" }
18+
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../../system" }
19+
pallet-babe = { version = "2.0.0-rc5", default-features = false, path = "../../babe" }
20+
pallet-balances = { version = "2.0.0-rc5", default-features = false, path = "../../balances" }
21+
pallet-grandpa = { version = "2.0.0-rc5", default-features = false, path = "../../grandpa" }
22+
pallet-im-online = { version = "2.0.0-rc5", default-features = false, path = "../../im-online" }
23+
pallet-offences = { version = "2.0.0-rc5", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
24+
pallet-session = { version = "2.0.0-rc5", default-features = false, path = "../../session" }
25+
pallet-staking = { version = "2.0.0-rc5", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
26+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/runtime" }
27+
sp-staking = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/staking" }
28+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/std" }
2929

3030
[dev-dependencies]
3131
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
32-
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
33-
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
32+
pallet-staking-reward-curve = { version = "2.0.0-rc5", path = "../../staking/reward-curve" }
33+
pallet-timestamp = { version = "2.0.0-rc5", path = "../../timestamp" }
3434
serde = { version = "1.0.101" }
35-
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
36-
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
35+
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
36+
sp-io = { version = "2.0.0-rc5", path = "../../../primitives/io" }
3737

3838
[features]
3939
default = ["std"]

0 commit comments

Comments
 (0)