Prepping release of alpha.6 (#5629)

* bumping version

* cargo update

* adding changelog
This commit is contained in:
Benjamin Kampmann
2020-04-14 21:41:49 +02:00
committed by GitHub
parent 889a9763dd
commit 51f9bb3c0e
177 changed files with 2307 additions and 2271 deletions
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-api"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,14 +8,17 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate runtime api primitives"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-api-proc-macro = { version = "2.0.0-alpha.5", path = "proc-macro" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0-alpha.5", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0-alpha.5", optional = true, path = "../../primitives/state-machine" }
sp-api-proc-macro = { version = "2.0.0-alpha.6", path = "proc-macro" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0-alpha.6", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0-alpha.6", optional = true, path = "../../primitives/state-machine" }
hash-db = { version = "0.15.2", optional = true }
[dev-dependencies]
@@ -32,6 +35,3 @@ std = [
"sp-version/std",
"hash-db",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-api-proc-macro"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,6 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Macros for declaring and implementing runtime apis."
documentation = "https://docs.rs/sp-api-proc-macro"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
proc-macro = true
@@ -24,6 +27,3 @@ proc-macro-crate = "0.1.4"
[features]
default = [ "std" ]
std = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+11 -11
View File
@@ -8,23 +8,26 @@ publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-alpha.5", path = "../" }
sp-api = { version = "2.0.0-alpha.6", path = "../" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sp-version = { version = "2.0.0-alpha.5", path = "../../version" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../runtime" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../blockchain" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sc-block-builder = { version = "0.8.0-alpha.5", path = "../../../client/block-builder" }
sp-version = { version = "2.0.0-alpha.6", path = "../../version" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../runtime" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../blockchain" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
sc-block-builder = { version = "0.8.0-alpha.6", path = "../../../client/block-builder" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../../../primitives/state-machine" }
trybuild = "1.0.17"
rustversion = "1.0.0"
[dev-dependencies]
criterion = "0.3.0"
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sp-core = { version = "2.0.0-alpha.5", path = "../../core" }
sp-core = { version = "2.0.0-alpha.6", path = "../../core" }
[[bench]]
name = "bench"
@@ -34,6 +37,3 @@ harness = false
[features]
default = [ "std" ]
std = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]