alpha.4 release fixes (#5303)

* Adding missing metadata for benchmark-pallet

* Missed to bump a few

* release on roling tag

* Wasm executors were missed
This commit is contained in:
Benjamin Kampmann
2020-03-18 15:47:34 +01:00
committed by GitHub
parent 25e25a83b9
commit becbe0a339
18 changed files with 30 additions and 27 deletions
+1 -1
View File
@@ -578,7 +578,7 @@ publish-to-crates-io:
<<: *docker-env <<: *docker-env
only: only:
- tags - tags
- /^v[0-9]+\.[0-9]+\.[0-9]+.*$/ - ci-release
script: script:
- cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS}
- cargo unleash em-dragons --no-check ${CARGO_UNLEASH_PKG_DEF} - cargo unleash em-dragons --no-check ${CARGO_UNLEASH_PKG_DEF}
+6 -6
View File
@@ -4158,7 +4158,7 @@ dependencies = [
[[package]] [[package]]
name = "pallet-example" name = "pallet-example"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
dependencies = [ dependencies = [
"frame-benchmarking", "frame-benchmarking",
"frame-support", "frame-support",
@@ -4174,7 +4174,7 @@ dependencies = [
[[package]] [[package]]
name = "pallet-example-offchain-worker" name = "pallet-example-offchain-worker"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
dependencies = [ dependencies = [
"frame-support", "frame-support",
"frame-system", "frame-system",
@@ -6101,7 +6101,7 @@ dependencies = [
[[package]] [[package]]
name = "sc-executor-wasmi" name = "sc-executor-wasmi"
version = "0.8.0-alpha.3" version = "0.8.0-alpha.4"
dependencies = [ dependencies = [
"log 0.4.8", "log 0.4.8",
"parity-scale-codec", "parity-scale-codec",
@@ -6116,7 +6116,7 @@ dependencies = [
[[package]] [[package]]
name = "sc-executor-wasmtime" name = "sc-executor-wasmtime"
version = "0.8.0-alpha.3" version = "0.8.0-alpha.4"
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"log 0.4.8", "log 0.4.8",
@@ -7544,7 +7544,7 @@ dependencies = [
[[package]] [[package]]
name = "sp-wasm-interface" name = "sp-wasm-interface"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
dependencies = [ dependencies = [
"impl-trait-for-tuples", "impl-trait-for-tuples",
"parity-scale-codec", "parity-scale-codec",
@@ -7866,7 +7866,7 @@ dependencies = [
[[package]] [[package]]
name = "substrate-test-utils" name = "substrate-test-utils"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
[[package]] [[package]]
name = "substrate-wasm-builder" name = "substrate-wasm-builder"
+3 -3
View File
@@ -21,12 +21,12 @@ sp-panic-handler = { version = "2.0.0-alpha.4", path = "../../primitives/panic-h
wasmi = "0.6.2" wasmi = "0.6.2"
parity-wasm = "0.41.0" parity-wasm = "0.41.0"
lazy_static = "1.4.0" lazy_static = "1.4.0"
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../primitives/runtime-interface" }
sp-externalities = { version = "0.8.0-alpha.4", path = "../../primitives/externalities" } sp-externalities = { version = "0.8.0-alpha.4", path = "../../primitives/externalities" }
sc-executor-common = { version = "0.8.0-alpha.4", path = "common" } sc-executor-common = { version = "0.8.0-alpha.4", path = "common" }
sc-executor-wasmi = { version = "0.8.0-alpha.2", path = "wasmi" } sc-executor-wasmi = { version = "0.8.0-alpha.4", path = "wasmi" }
sc-executor-wasmtime = { version = "0.8.0-alpha.2", path = "wasmtime", optional = true } sc-executor-wasmtime = { version = "0.8.0-alpha.4", path = "wasmtime", optional = true }
parking_lot = "0.10.0" parking_lot = "0.10.0"
log = "0.4.8" log = "0.4.8"
libsecp256k1 = "0.3.4" libsecp256k1 = "0.3.4"
+1 -1
View File
@@ -16,7 +16,7 @@ codec = { package = "parity-scale-codec", version = "1.2.0" }
wasmi = "0.6.2" wasmi = "0.6.2"
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" } sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" }
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" }
sp-serializer = { version = "2.0.0-alpha.4", path = "../../../primitives/serializer" } sp-serializer = { version = "2.0.0-alpha.4", path = "../../../primitives/serializer" }
+3 -3
View File
@@ -1,13 +1,13 @@
[package] [package]
name = "sc-executor-wasmi" name = "sc-executor-wasmi"
version = "0.8.0-alpha.3" version = "0.8.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev" homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/" repository = "https://github.com/paritytech/substrate/"
description = "This crate provides an implementation of `WasmRuntime` that is baked by wasmi." description = "This crate provides an implementation of `WasmRuntime` that is baked by wasmi."
documentation = "https://docs.rs/sc-execturo-wasmi" documentation = "https://docs.rs/sc-executor-wasmi"
[dependencies] [dependencies]
log = "0.4.8" log = "0.4.8"
@@ -15,7 +15,7 @@ wasmi = "0.6.2"
parity-wasm = "0.41.0" parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "1.2.0" } codec = { package = "parity-scale-codec", version = "1.2.0" }
sc-executor-common = { version = "0.8.0-alpha.4", path = "../common" } sc-executor-common = { version = "0.8.0-alpha.4", path = "../common" }
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" } sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" }
@@ -1,6 +1,6 @@
[package] [package]
name = "sc-executor-wasmtime" name = "sc-executor-wasmtime"
version = "0.8.0-alpha.3" version = "0.8.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
@@ -14,7 +14,7 @@ scoped-tls = "1.0"
parity-wasm = "0.41.0" parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "1.2.0" } codec = { package = "parity-scale-codec", version = "1.2.0" }
sc-executor-common = { version = "0.8.0-alpha.4", path = "../common" } sc-executor-common = { version = "0.8.0-alpha.4", path = "../common" }
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-alpha.4", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" } sp-core = { version = "2.0.0-alpha.4", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-alpha.4", path = "../../../primitives/allocator" }
+3
View File
@@ -4,6 +4,9 @@ version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Patterns to benchmark in a FRAME runtime."
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
@@ -21,7 +21,7 @@ sp-io = { version = "2.0.0-alpha.4", path = "../../primitives/io" }
hex-literal = "0.2.1" hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-alpha.4", path = "../balances" } pallet-balances = { version = "2.0.0-alpha.4", path = "../balances" }
sp-core = { version = "2.0.0-alpha.4", path = "../../primitives/core" } sp-core = { version = "2.0.0-alpha.4", path = "../../primitives/core" }
substrate-test-utils = { version = "2.0.0-alpha.2", path = "../../test-utils" } substrate-test-utils = { version = "2.0.0-alpha.4", path = "../../test-utils" }
serde = { version = "1.0.101" } serde = { version = "1.0.101" }
[features] [features]
@@ -1,6 +1,6 @@
[package] [package]
name = "pallet-example-offchain-worker" name = "pallet-example-offchain-worker"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "Unlicense" license = "Unlicense"
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "pallet-example" name = "pallet-example"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "Unlicense" license = "Unlicense"
+1 -1
View File
@@ -30,7 +30,7 @@ sp-core = { version = "2.0.0-alpha.4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-alpha.4", path = "../balances" } pallet-balances = { version = "2.0.0-alpha.4", path = "../balances" }
pallet-timestamp = { version = "2.0.0-alpha.4", path = "../timestamp" } pallet-timestamp = { version = "2.0.0-alpha.4", path = "../timestamp" }
pallet-staking-reward-curve = { version = "2.0.0-alpha.4", path = "../staking/reward-curve" } pallet-staking-reward-curve = { version = "2.0.0-alpha.4", path = "../staking/reward-curve" }
substrate-test-utils = { version = "2.0.0-alpha.2", path = "../../test-utils" } substrate-test-utils = { version = "2.0.0-alpha.4", path = "../../test-utils" }
frame-benchmarking = { version = "2.0.0-alpha.4", path = "../benchmarking" } frame-benchmarking = { version = "2.0.0-alpha.4", path = "../benchmarking" }
rand_chacha = { version = "0.2" } rand_chacha = { version = "0.2" }
+1 -1
View File
@@ -12,7 +12,7 @@ documentation = "https://docs.rs/sp-allocator"
[dependencies] [dependencies]
sp-std = { version = "2.0.0-alpha.4", path = "../std", default-features = false } sp-std = { version = "2.0.0-alpha.4", path = "../std", default-features = false }
sp-core = { version = "2.0.0-alpha.4", path = "../core", default-features = false } sp-core = { version = "2.0.0-alpha.4", path = "../core", default-features = false }
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../wasm-interface", default-features = false } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../wasm-interface", default-features = false }
log = { version = "0.4.8", optional = true } log = { version = "0.4.8", optional = true }
derive_more = { version = "0.99.2", optional = true } derive_more = { version = "0.99.2", optional = true }
+1 -1
View File
@@ -17,7 +17,7 @@ sp-core = { version = "2.0.0-alpha.4", default-features = false, path = "../core
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" } sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" }
libsecp256k1 = { version = "0.3.4", optional = true } libsecp256k1 = { version = "0.3.4", optional = true }
sp-state-machine = { version = "0.8.0-alpha.4", optional = true, path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-alpha.4", optional = true, path = "../../primitives/state-machine" }
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../../primitives/wasm-interface", default-features = false } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../../primitives/wasm-interface", default-features = false }
sp-runtime-interface = { version = "2.0.0-alpha.4", default-features = false, path = "../runtime-interface" } sp-runtime-interface = { version = "2.0.0-alpha.4", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "2.0.0-alpha.4", optional = true, path = "../../primitives/trie" } sp-trie = { version = "2.0.0-alpha.4", optional = true, path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0-alpha.4", optional = true, path = "../externalities" } sp-externalities = { version = "0.8.0-alpha.4", optional = true, path = "../externalities" }
+1 -1
View File
@@ -14,7 +14,7 @@ sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std"
sp-runtime = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/runtime" }
[dev-dependencies] [dev-dependencies]
substrate-test-utils = { version = "2.0.0-alpha.2", path = "../../test-utils" } substrate-test-utils = { version = "2.0.0-alpha.4", path = "../../test-utils" }
sp-io ={ version = "2.0.0-alpha.4", path = "../../primitives/io" } sp-io ={ version = "2.0.0-alpha.4", path = "../../primitives/io" }
rand = "0.7.2" rand = "0.7.2"
@@ -10,7 +10,7 @@ description = "Substrate runtime interface"
documentation = "https://docs.rs/sp-runtime-interface/" documentation = "https://docs.rs/sp-runtime-interface/"
[dependencies] [dependencies]
sp-wasm-interface = { version = "2.0.0-alpha.2", path = "../wasm-interface", default-features = false } sp-wasm-interface = { version = "2.0.0-alpha.4", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" } sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" }
sp-runtime-interface-proc-macro = { version = "2.0.0-alpha.4", path = "proc-macro" } sp-runtime-interface-proc-macro = { version = "2.0.0-alpha.4", path = "proc-macro" }
sp-externalities = { version = "0.8.0-alpha.4", optional = true, path = "../externalities" } sp-externalities = { version = "0.8.0-alpha.4", optional = true, path = "../externalities" }
+1 -1
View File
@@ -13,7 +13,7 @@ wasmi = { version = "0.6.2", optional = true }
sp-core = { version = "2.0.0-alpha.4", default-features = false, path = "../core" } sp-core = { version = "2.0.0-alpha.4", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" } sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.4", default-features = false, path = "../io" } sp-io = { version = "2.0.0-alpha.4", default-features = false, path = "../io" }
sp-wasm-interface = { version = "2.0.0-alpha.2", default-features = false, path = "../wasm-interface" } sp-wasm-interface = { version = "2.0.0-alpha.4", default-features = false, path = "../wasm-interface" }
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false }
[dev-dependencies] [dev-dependencies]
@@ -1,6 +1,6 @@
[package] [package]
name = "sp-wasm-interface" name = "sp-wasm-interface"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "substrate-test-utils" name = "substrate-test-utils"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"