Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 9fa8589

Browse files
authored
alpha.4 release fixes (#5303)
* Adding missing metadata for benchmark-pallet * Missed to bump a few * release on roling tag * Wasm executors were missed
1 parent 6a38fdc commit 9fa8589

File tree

18 files changed

+30
-27
lines changed

18 files changed

+30
-27
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ publish-to-crates-io:
578578
<<: *docker-env
579579
only:
580580
- tags
581-
- /^v[0-9]+\.[0-9]+\.[0-9]+.*$/
581+
- ci-release
582582
script:
583583
- cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS}
584584
- cargo unleash em-dragons --no-check ${CARGO_UNLEASH_PKG_DEF}

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/executor/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ sp-panic-handler = { version = "2.0.0-alpha.4", path = "../../primitives/panic-h
2121
wasmi = "0.6.2"
2222
parity-wasm = "0.41.0"
2323
lazy_static = "1.4.0"
24-
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../primitives/wasm-interface" }
24+
sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../primitives/wasm-interface" }
2525
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../primitives/runtime-interface" }
2626
sp-externalities = { version = "0.8.0-alpha.4", path = "../../primitives/externalities" }
2727
sc-executor-common = { version = "0.8.0-alpha.4", path = "common" }
28-
sc-executor-wasmi = { version = "0.8.0-alpha.2", path = "wasmi" }
29-
sc-executor-wasmtime = { version = "0.8.0-alpha.2", path = "wasmtime", optional = true }
28+
sc-executor-wasmi = { version = "0.8.0-alpha.4", path = "wasmi" }
29+
sc-executor-wasmtime = { version = "0.8.0-alpha.4", path = "wasmtime", optional = true }
3030
parking_lot = "0.10.0"
3131
log = "0.4.8"
3232
libsecp256k1 = "0.3.4"

client/executor/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ codec = { package = "parity-scale-codec", version = "1.2.0" }
1616
wasmi = "0.6.2"
1717
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
1818
sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" }
19-
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../../primitives/wasm-interface" }
19+
sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/wasm-interface" }
2020
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" }
2121
sp-serializer = { version = "2.0.0-alpha.4", path = "../../../primitives/serializer" }
2222

client/executor/wasmi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[package]
22
name = "sc-executor-wasmi"
3-
version = "0.8.0-alpha.3"
3+
version = "0.8.0-alpha.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "GPL-3.0"
77
homepage = "https://substrate.dev"
88
repository = "https://github.com/paritytech/substrate/"
99
description = "This crate provides an implementation of `WasmRuntime` that is baked by wasmi."
10-
documentation = "https://docs.rs/sc-execturo-wasmi"
10+
documentation = "https://docs.rs/sc-executor-wasmi"
1111

1212
[dependencies]
1313
log = "0.4.8"
1414
wasmi = "0.6.2"
1515
parity-wasm = "0.41.0"
1616
codec = { package = "parity-scale-codec", version = "1.2.0" }
1717
sc-executor-common = { version = "0.8.0-alpha.4", path = "../common" }
18-
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../../primitives/wasm-interface" }
18+
sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/wasm-interface" }
1919
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" }
2020
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
2121
sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" }

client/executor/wasmtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sc-executor-wasmtime"
3-
version = "0.8.0-alpha.3"
3+
version = "0.8.0-alpha.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "GPL-3.0"
@@ -14,7 +14,7 @@ scoped-tls = "1.0"
1414
parity-wasm = "0.41.0"
1515
codec = { package = "parity-scale-codec", version = "1.2.0" }
1616
sc-executor-common = { version = "0.8.0-alpha.4", path = "../common" }
17-
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../../primitives/wasm-interface" }
17+
sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/wasm-interface" }
1818
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" }
1919
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
2020
sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" }

frame/benchmark/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ version = "2.0.0-alpha.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "GPL-3.0"
7+
homepage = "https://substrate.dev"
8+
repository = "https://github.com/paritytech/substrate/"
9+
description = "Patterns to benchmark in a FRAME runtime."
710

811
[dependencies]
912
serde = { version = "1.0.101", optional = true }

frame/elections-phragmen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ sp-io = { version = "2.0.0-alpha.4", path = "../../primitives/io" }
2121
hex-literal = "0.2.1"
2222
pallet-balances = { version = "2.0.0-alpha.4", path = "../balances" }
2323
sp-core = { version = "2.0.0-alpha.4", path = "../../primitives/core" }
24-
substrate-test-utils = { version = "2.0.0-alpha.2", path = "../../test-utils" }
24+
substrate-test-utils = { version = "2.0.0-alpha.4", path = "../../test-utils" }
2525
serde = { version = "1.0.101" }
2626

2727
[features]

frame/example-offchain-worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-example-offchain-worker"
3-
version = "2.0.0-alpha.3"
3+
version = "2.0.0-alpha.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Unlicense"

frame/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-example"
3-
version = "2.0.0-alpha.3"
3+
version = "2.0.0-alpha.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66
license = "Unlicense"

0 commit comments

Comments
 (0)