Release primitive crates (#10937)

* cargo set-version --bump major -p pallet-contracts-primitives

* cargo set-version --bump major -p sp-core

* cargo set-version --bump major -p sp-runtime-interface

* cargo set-version --bump major -p sp-wasm-interface

* cargo set-version --bump major -p sp-runtime

* cargo set-version --bump major -p sp-storage

* cargo set-version --bump major -p sp-rpc

* cargo set-version --bump major -p sp-io

* cargo set-version --bump major -p sp-trie

* cargo set-version -p sp-state-machine  -- 0.12.0

* cargo set-version -p sp-externalities  -- 0.12.0

* cargo set-version -p sp-keystore -- 0.12.0

* cargo set-version --bump major -p sp-keyring

* cargo set-version --bump major -p sp-version

* cargo set-version --bump major -p sp-tracing

* cargo set-version --bump major -p sp-application-crypto

* cargo set-version --bump major -p sp-arithmetic

* cargo unleash version bump-major -p sp-runtime-interface-proc-macro

* Add codec max-encoded-len feature to sp-arithmetic

* cargo unleash version bump-major -p sp-core-hashing-proc-macro
This commit is contained in:
Andrew Jones
2022-03-01 13:35:23 +00:00
committed by GitHub
parent e71c7b259d
commit a3a7fe9041
190 changed files with 667 additions and 666 deletions
+7 -7
View File
@@ -18,23 +18,23 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
frame-metadata = { version = "15.0.0", default-features = false, features = ["v14"] }
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "4.0.0", default-features = false, path = "../../primitives/tracing" }
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../primitives/arithmetic" }
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "5.0.0", default-features = false, path = "../../primitives/tracing" }
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../primitives/arithmetic" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
tt-call = "1.0.8"
frame-support-procedural = { version = "4.0.0-dev", default-features = false, path = "./procedural" }
paste = "1.0"
once_cell = { version = "1", default-features = false, optional = true }
sp-state-machine = { version = "0.11.0", optional = true, path = "../../primitives/state-machine" }
sp-state-machine = { version = "0.12.0", optional = true, path = "../../primitives/state-machine" }
bitflags = "1.3"
impl-trait-for-tuples = "0.2.1"
smallvec = "1.8.0"
log = { version = "0.4.14", default-features = false }
sp-core-hashing-proc-macro = { version = "4.0.0-dev", path = "../../primitives/core/hashing/proc-macro" }
sp-core-hashing-proc-macro = { version = "5.0.0", path = "../../primitives/core/hashing/proc-macro" }
[dev-dependencies]
assert_matches = "1.3.0"
+6 -6
View File
@@ -15,14 +15,14 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.136", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../../primitives/arithmetic" }
sp-io = { version = "5.0.0", path = "../../../primitives/io", default-features = false }
sp-state-machine = { version = "0.11.0", optional = true, path = "../../../primitives/state-machine" }
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../../primitives/arithmetic" }
sp-io = { version = "6.0.0", path = "../../../primitives/io", default-features = false }
sp-state-machine = { version = "0.12.0", optional = true, path = "../../../primitives/state-machine" }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../" }
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" }
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }
trybuild = "1.0.53"
pretty_assertions = "1.0.0"
rustversion = "1.0.6"
@@ -14,9 +14,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "5.0.0", default-features = false, path = "../../../../primitives/core" }
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../../primitives/runtime" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/version" }
sp-core = { version = "6.0.0", default-features = false, path = "../../../../primitives/core" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../../primitives/runtime" }
sp-version = { version = "5.0.0", default-features = false, path = "../../../../primitives/version" }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../" }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../system" }