release sp-core 7.0.0 and sp-runtime 7.0.0 (#12599)

* chore(release): sp-core v7.0.0

* chore(release): sp-runtime v7.0.0

* fix bad merge
This commit is contained in:
Niklas Adolfsson
2022-11-15 15:54:14 +01:00
committed by GitHub
parent 880f6c9d60
commit 2b8af8cb1a
213 changed files with 830 additions and 815 deletions
@@ -17,12 +17,12 @@ async-trait = { version = "0.1.57", optional = true }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../application-crypto" }
sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" }
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" }
[features]
@@ -19,15 +19,15 @@ merlin = { version = "2.0", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.136", features = ["derive"], optional = true }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../application-crypto" }
sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" }
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
sp-consensus-vrf = { version = "0.10.0-dev", default-features = false, path = "../vrf" }
sp-core = { version = "6.0.0", default-features = false, path = "../../core" }
sp-core = { version = "7.0.0", default-features = false, path = "../../core" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
sp-keystore = { version = "0.12.0", default-features = false, optional = true, path = "../../keystore" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
sp-keystore = { version = "0.13.0", default-features = false, optional = true, path = "../../keystore" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
sp-timestamp = { version = "4.0.0-dev", optional = true, path = "../../timestamp" }
[features]
@@ -22,11 +22,11 @@ futures = { version = "0.3.21", features = ["thread-pool"] }
futures-timer = "3.0.1"
log = "0.4.17"
thiserror = "1.0.30"
sp-core = { version = "6.0.0", path = "../../core" }
sp-core = { version = "7.0.0", path = "../../core" }
sp-inherents = { version = "4.0.0-dev", path = "../../inherents" }
sp-runtime = { version = "6.0.0", path = "../../runtime" }
sp-state-machine = { version = "0.12.0", path = "../../state-machine" }
sp-std = { version = "4.0.0", path = "../../std" }
sp-runtime = { version = "7.0.0", path = "../../runtime" }
sp-state-machine = { version = "0.13.0", path = "../../state-machine" }
sp-std = { version = "5.0.0", path = "../../std" }
sp-version = { version = "5.0.0", path = "../../version" }
[dev-dependencies]
@@ -15,9 +15,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-core = { version = "6.0.0", default-features = false, path = "../../core" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
sp-core = { version = "7.0.0", default-features = false, path = "../../core" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
[features]
default = ["std"]
@@ -16,9 +16,9 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0", features = ["derive"], optional = true }
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../arithmetic" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
sp-arithmetic = { version = "6.0.0", default-features = false, path = "../../arithmetic" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" }
[features]
@@ -16,9 +16,9 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
scale-info = { version = "2.1.1", default-features = false }
schnorrkel = { version = "0.9.1", default-features = false, features = ["preaudit_deprecated", "u64_backend"] }
sp-core = { version = "6.0.0", default-features = false, path = "../../core" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "4.0.0", default-features = false, path = "../../std" }
sp-core = { version = "7.0.0", default-features = false, path = "../../core" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "5.0.0", default-features = false, path = "../../std" }
[features]
default = ["std"]