Releasing 2.0.0-alpha.4 (#5279)

* Version bump

* Split generate_changelog.sh into separate script

Can be run in the format `generate_changelog.sh $previous_version $version`.

* remove early exit from publish_draft_release.sh

* adding changelog

* ci: change last_github_release to also find pre-releases

Co-authored-by: Martin Pugh <pugh@s3kr.it>
This commit is contained in:
Benjamin Kampmann
2020-03-18 14:37:21 +01:00
committed by GitHub
parent d02868a0bf
commit 25e25a83b9
168 changed files with 1629 additions and 1530 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core"
version = "2.0.0-alpha.3"
version = "2.0.0-alpha.4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -10,7 +10,7 @@ description = "Shareable Substrate types."
documentation = "https://docs.rs/sp-core"
[dependencies]
sp-std = { version = "2.0.0-alpha.2", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false, features = ["derive"] }
rustc-hex = { version = "2.0.1", default-features = false }
log = { version = "0.4.8", default-features = false }
@@ -30,9 +30,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.2", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-alpha.2", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-alpha.2", default-features = false, path = "../storage" }
sp-debug-derive = { version = "2.0.0-alpha.4", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-alpha.4", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-alpha.4", default-features = false, path = "../storage" }
parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] }
futures = { version = "0.3.1", optional = true }
@@ -46,10 +46,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.2", default-features = false, path = "../runtime-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.4", default-features = false, path = "../runtime-interface" }
[dev-dependencies]
sp-serializer = { version = "2.0.0-alpha.2", path = "../serializer" }
sp-serializer = { version = "2.0.0-alpha.4", path = "../serializer" }
pretty_assertions = "0.6.1"
hex-literal = "0.2.1"
rand = "0.7.2"