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-core"
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,8 +9,11 @@ repository = "https://github.com/paritytech/substrate/"
description = "Shareable Substrate types."
documentation = "https://docs.rs/sp-core"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
log = { version = "0.4.8", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -29,9 +32,9 @@ num-traits = { version = "0.2.8", default-features = false }
zeroize = { version = "1.0.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, optional = true }
parking_lot = { version = "0.10.0", optional = true }
sp-debug-derive = { version = "2.0.0-alpha.5", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-alpha.5", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-alpha.5", default-features = false, path = "../storage" }
sp-debug-derive = { version = "2.0.0-alpha.6", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-alpha.6", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-alpha.6", default-features = false, path = "../storage" }
parity-util-mem = { version = "0.6.0", default-features = false, features = ["primitive-types"] }
futures = { version = "0.3.1", optional = true }
@@ -45,10 +48,10 @@ hex = { version = "0.4", default-features = false, optional = true }
twox-hash = { version = "1.5.0", default-features = false, optional = true }
libsecp256k1 = { version = "0.3.2", default-features = false, features = ["hmac"], optional = true }
sp-runtime-interface = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime-interface" }
[dev-dependencies]
sp-serializer = { version = "2.0.0-alpha.5", path = "../serializer" }
sp-serializer = { version = "2.0.0-alpha.6", path = "../serializer" }
pretty_assertions = "0.6.1"
hex-literal = "0.2.1"
rand = "0.7.2"
@@ -119,6 +122,3 @@ full_crypto = [
"libsecp256k1",
"sp-runtime-interface/disable_target_static_assertions",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]