Release: Bump SP crates to release on crates.io (#14237)

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
This commit is contained in:
Alexandru Vasile
2023-05-29 13:40:59 +03:00
committed by GitHub
parent c45eeb5498
commit 98a0550ea2
228 changed files with 922 additions and 922 deletions
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core"
version = "7.0.0"
version = "8.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
@@ -32,10 +32,10 @@ secrecy = { version = "0.8.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, optional = true }
parking_lot = { version = "0.12.1", optional = true }
ss58-registry = { version = "1.34.0", default-features = false }
sp-std = { version = "5.0.0", default-features = false, path = "../std" }
sp-debug-derive = { version = "5.0.0", default-features = false, path = "../debug-derive" }
sp-storage = { version = "7.0.0", default-features = false, path = "../storage" }
sp-externalities = { version = "0.13.0", optional = true, path = "../externalities" }
sp-std = { version = "6.0.0", default-features = false, path = "../std" }
sp-debug-derive = { version = "6.0.0", default-features = false, path = "../debug-derive" }
sp-storage = { version = "8.0.0", default-features = false, path = "../storage" }
sp-externalities = { version = "0.14.0", optional = true, path = "../externalities" }
futures = { version = "0.3.21", optional = true }
dyn-clonable = { version = "0.9.0", optional = true }
thiserror = { version = "1.0.30", optional = true }
@@ -50,8 +50,8 @@ libsecp256k1 = { version = "0.7", default-features = false, features = ["static-
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false }
merlin = { version = "2.0", default-features = false }
secp256k1 = { version = "0.24.0", default-features = false, features = ["recovery", "alloc"], optional = true }
sp-core-hashing = { version = "5.0.0", path = "./hashing", default-features = false, optional = true }
sp-runtime-interface = { version = "7.0.0", default-features = false, path = "../runtime-interface" }
sp-core-hashing = { version = "6.0.0", path = "./hashing", default-features = false, optional = true }
sp-runtime-interface = { version = "8.0.0", default-features = false, path = "../runtime-interface" }
# bls crypto
w3f-bls = { version = "0.1.3", default-features = false, optional = true}
@@ -59,7 +59,7 @@ w3f-bls = { version = "0.1.3", default-features = false, optional = true}
rand = "0.8.5"
criterion = "0.4.0"
serde_json = "1.0"
sp-core-hashing-proc-macro = { version = "5.0.0", path = "./hashing/proc-macro" }
sp-core-hashing-proc-macro = { version = "6.0.0", path = "./hashing/proc-macro" }
hex-literal = "0.3.4"
[[bench]]
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core-hashing"
version = "5.0.0"
version = "6.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
@@ -19,7 +19,7 @@ digest = { version = "0.10.3", default-features = false }
sha2 = { version = "0.10.2", default-features = false }
sha3 = { version = "0.10.0", default-features = false }
twox-hash = { version = "1.6.3", default-features = false, features = ["digest_0_10"] }
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
sp-std = { version = "6.0.0", default-features = false, path = "../../std" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-core-hashing-proc-macro"
version = "5.0.0"
version = "6.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
@@ -19,4 +19,4 @@ proc-macro = true
proc-macro2 = "1.0.56"
quote = "1.0.26"
syn = { version = "2.0.16", features = ["full", "parsing"] }
sp-core-hashing = { version = "5.0.0", default-features = false, path = "../" }
sp-core-hashing = { version = "6.0.0", default-features = false, path = "../" }