Skip to content

Commit 0eacd75

Browse files
gnunicorns3krit
andauthored
Releasing rc4 – Rhinoceros (#6515)
Co-authored-by: Martin Pugh <pugh@s3kr.it>
1 parent 296c56d commit 0eacd75

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
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-rc3"
3+
version = "2.0.0-rc4"
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-rc3", default-features = false, path = "../../primitives/core" }
18-
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
19-
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
20-
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
21-
sp-session = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/session" }
22-
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
23-
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
24-
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
25-
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
26-
sp-trie = { version = "2.0.0-rc3", optional = true, default-features = false, path = "../../primitives/trie" }
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" }
2727
impl-trait-for-tuples = "0.1.3"
2828

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

3333
[features]

benchmarking/Cargo.toml

Lines changed: 13 additions & 13 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-rc3"
3+
version = "2.0.0-rc4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -12,22 +12,22 @@ description = "FRAME sessions pallet benchmarking"
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

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

2323
[dev-dependencies]
2424
serde = { version = "1.0.101" }
2525
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
26-
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
27-
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../../staking/reward-curve" }
28-
sp-io ={ version = "2.0.0-rc3", path = "../../../primitives/io" }
29-
pallet-timestamp = { version = "2.0.0-rc3", path = "../../timestamp" }
30-
pallet-balances = { version = "2.0.0-rc3", path = "../../balances" }
26+
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
27+
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
28+
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
29+
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
30+
pallet-balances = { version = "2.0.0-rc4", path = "../../balances" }
3131

3232
[features]
3333
default = ["std"]

0 commit comments

Comments
 (0)