Skip to content

Commit eae62c9

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 776ab5b commit eae62c9

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
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-contracts"
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"
@@ -17,24 +17,24 @@ pwasm-utils = { version = "0.12.0", default-features = false }
1717
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
1818
parity-wasm = { version = "0.41.0", default-features = false }
1919
wasmi-validation = { version = "0.3.0", default-features = false }
20-
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
21-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
22-
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
23-
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
24-
sp-sandbox = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/sandbox" }
25-
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
26-
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
27-
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "common" }
20+
sp-core = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/core" }
21+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/runtime" }
22+
sp-io = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/io" }
23+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../primitives/std" }
24+
sp-sandbox = { version = "0.8.0-rc5", default-features = false, path = "../../primitives/sandbox" }
25+
frame-support = { version = "2.0.0-rc5", default-features = false, path = "../support" }
26+
frame-system = { version = "2.0.0-rc5", default-features = false, path = "../system" }
27+
pallet-contracts-primitives = { version = "2.0.0-rc5", default-features = false, path = "common" }
2828
bitflags = "1.0"
2929

3030
[dev-dependencies]
3131
wabt = "0.9.2"
3232
assert_matches = "1.3.0"
3333
hex-literal = "0.2.1"
3434
pretty_assertions = "0.6.1"
35-
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
36-
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
37-
pallet-randomness-collective-flip = { version = "2.0.0-rc4", path = "../randomness-collective-flip" }
35+
pallet-balances = { version = "2.0.0-rc5", path = "../balances" }
36+
pallet-timestamp = { version = "2.0.0-rc5", path = "../timestamp" }
37+
pallet-randomness-collective-flip = { version = "2.0.0-rc5", path = "../randomness-collective-flip" }
3838

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

common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-contracts-primitives"
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,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
1414
[dependencies]
1515
# This crate should not rely on any of the frame primitives.
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" }
18-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
17+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/std" }
18+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../../primitives/runtime" }
1919

2020
[features]
2121
default = ["std"]

rpc/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-contracts-rpc"
3-
version = "0.8.0-rc4"
3+
version = "0.8.0-rc5"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -16,14 +16,14 @@ codec = { package = "parity-scale-codec", version = "1.3.1" }
1616
jsonrpc-core = "14.2.0"
1717
jsonrpc-core-client = "14.2.0"
1818
jsonrpc-derive = "14.2.1"
19-
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
20-
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
21-
sp-rpc = { version = "2.0.0-rc4", path = "../../../primitives/rpc" }
19+
sp-blockchain = { version = "2.0.0-rc5", path = "../../../primitives/blockchain" }
20+
sp-core = { version = "2.0.0-rc5", path = "../../../primitives/core" }
21+
sp-rpc = { version = "2.0.0-rc5", path = "../../../primitives/rpc" }
2222
serde = { version = "1.0.101", features = ["derive"] }
23-
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
24-
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
25-
pallet-contracts-primitives = { version = "2.0.0-rc4", path = "../common" }
26-
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc4", path = "./runtime-api" }
23+
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
24+
sp-api = { version = "2.0.0-rc5", path = "../../../primitives/api" }
25+
pallet-contracts-primitives = { version = "2.0.0-rc5", path = "../common" }
26+
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc5", path = "./runtime-api" }
2727

2828
[dev-dependencies]
2929
serde_json = "1.0.41"

rpc/runtime-api/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-contracts-rpc-runtime-api"
3-
version = "0.8.0-rc4"
3+
version = "0.8.0-rc5"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -12,11 +12,11 @@ description = "Runtime API definition required by Contracts RPC extensions."
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
15-
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/api" }
15+
sp-api = { version = "2.0.0-rc5", default-features = false, path = "../../../../primitives/api" }
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" }
18-
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/runtime" }
19-
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "../../common" }
17+
sp-std = { version = "2.0.0-rc5", default-features = false, path = "../../../../primitives/std" }
18+
sp-runtime = { version = "2.0.0-rc5", default-features = false, path = "../../../../primitives/runtime" }
19+
pallet-contracts-primitives = { version = "2.0.0-rc5", default-features = false, path = "../../common" }
2020

2121
[features]
2222
default = ["std"]

0 commit comments

Comments
 (0)