Release sp-core 4.0.0 (#10447)

* Bump versions of sp-core and dependencies to v4.0.0

* Update references from `4.0.0-dev` –> `4.0.0`

* Funny whitespace

* Funny whitespace 2
This commit is contained in:
David
2021-12-08 21:06:50 +01:00
committed by GitHub
parent 4b34b041b8
commit 92dc635f3c
172 changed files with 360 additions and 361 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core"
version = "4.0.0-dev"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
@@ -13,7 +13,6 @@ documentation = "https://docs.rs/sp-core"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = [
"derive",
"max-encoded-len",
@@ -40,9 +39,10 @@ zeroize = { version = "1.4.2", default-features = false }
secrecy = { version = "0.8.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, optional = true }
parking_lot = { version = "0.11.1", optional = true }
sp-debug-derive = { version = "4.0.0-dev", default-features = false, path = "../debug-derive" }
sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" }
sp-storage = { version = "4.0.0-dev", default-features = false, path = "../storage" }
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
sp-debug-derive = { version = "4.0.0", default-features = false, path = "../debug-derive" }
sp-storage = { version = "4.0.0", default-features = false, path = "../storage" }
sp-externalities = { version = "0.10.0", optional = true, path = "../externalities" }
parity-util-mem = { version = "0.10.2", default-features = false, features = [
"primitive-types",
] }
@@ -66,10 +66,10 @@ sha2 = { version = "0.9.8", default-features = false, optional = true }
hex = { version = "0.4", default-features = false, optional = true }
twox-hash = { version = "1.6.1", default-features = false, optional = true }
libsecp256k1 = { version = "0.7", default-features = false, features = ["hmac", "static-context"], optional = true }
sp-core-hashing = { version = "4.0.0-dev", path = "./hashing", default-features = false, optional = true }
merlin = { version = "2.0", default-features = false, optional = true }
ss58-registry = { version = "1.5.0", default-features = false }
sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" }
sp-core-hashing = { version = "4.0.0", path = "./hashing", default-features = false, optional = true }
sp-runtime-interface = { version = "4.0.0", default-features = false, path = "../runtime-interface" }
[dev-dependencies]
sp-serializer = { version = "4.0.0-dev", path = "../serializer" }
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core-hashing"
version = "4.0.0-dev"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
@@ -13,7 +13,7 @@ documentation = "https://docs.rs/sp-core-hashing"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" }
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
byteorder = { version = "1.3.2", default-features = false }
blake2-rfc = { version = "0.2.18", default-features = false }
@@ -19,4 +19,4 @@ proc-macro = true
syn = { version = "1.0.81", features = ["full", "parsing"] }
quote = "1.0.6"
proc-macro2 = "1.0.29"
sp-core-hashing = { version = "4.0.0-dev", path = "../", default-features = false }
sp-core-hashing = { version = "4.0.0", path = "../", default-features = false }