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
+5 -6
View File
@@ -19,7 +19,7 @@ scale-info = { version = "1.0", default-features = false, features = ["derive"]
# primitives
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
# FRAME
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
@@ -32,14 +32,14 @@ log = { version = "0.4.14", default-features = false }
# Optional imports for benchmarking
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking", optional = true, default-features = false }
pallet-balances = { version = "4.0.0-dev", path = "../balances", optional = true, default-features = false }
sp-core = { version = "4.0.0-dev", path = "../../primitives/core", optional = true, default-features = false }
sp-core = { version = "4.0.0", path = "../../primitives/core", optional = true, default-features = false }
sp-io = { version = "4.0.0-dev", path = "../../primitives/io", optional = true, default-features = false }
sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing", optional = true, default-features = false }
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing", optional = true, default-features = false }
[dev-dependencies]
sp-core = { version = "4.0.0-dev", path = "../../primitives/core"}
sp-core = { version = "4.0.0", path = "../../primitives/core"}
sp-io = { version = "4.0.0-dev", path = "../../primitives/io"}
sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" }
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support", features = ["runtime-benchmarks"] }
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
@@ -70,4 +70,3 @@ fuzz = [
"sp-tracing",
]
try-runtime = [ "frame-support/try-runtime" ]
@@ -21,11 +21,11 @@ frame-system = { path = "../../system", version = "4.0.0-dev" }
frame-support = { path = "../../support", version = "4.0.0-dev" }
# core
sp-storage = { path = "../../../primitives/storage", version = "4.0.0-dev" }
sp-core = { path = "../../../primitives/core", version = "4.0.0-dev" }
sp-tracing = { path = "../../../primitives/tracing", version = "4.0.0-dev" }
sp-storage = { path = "../../../primitives/storage", version = "4.0.0" }
sp-core = { path = "../../../primitives/core", version = "4.0.0" }
sp-tracing = { path = "../../../primitives/tracing", version = "4.0.0" }
sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev" }
sp-std = { path = "../../../primitives/std", version = "4.0.0-dev" }
sp-std = { path = "../../../primitives/std", version = "4.0.0" }
# utils
remote-externalities = { path = "../../../utils/frame/remote-externalities", version = "0.10.0-dev" }