From d1cdb3592f1def6e8756669c760568e21607800a Mon Sep 17 00:00:00 2001 From: Xavier Lau Date: Mon, 21 Nov 2022 12:54:55 +0800 Subject: [PATCH] Release `v0.9.0-rc19` (#314) * Longer sleep time * Release `v0.9.0-rc19` --- .maintain/release.sh | 12 ++++----- Cargo.lock | 26 +++++++++---------- Cargo.toml | 22 ++++++++-------- bin/subalfred/Cargo.toml | 2 +- bin/subalfred/src/command/impl/Cargo.toml | 2 +- .../src/command/impl/debug/Cargo.toml | 2 +- lib/core/Cargo.toml | 2 +- lib/util/Cargo.toml | 2 +- substrate-minimal/subcryptor/Cargo.toml | 2 +- substrate-minimal/subgrandpa/Cargo.toml | 2 +- substrate-minimal/subhasher/Cargo.toml | 2 +- substrate-minimal/submetadatan/Cargo.toml | 2 +- substrate-minimal/subrpcer/Cargo.toml | 2 +- substrate-minimal/subruntimer/Cargo.toml | 2 +- substrate-minimal/subspector/Cargo.toml | 2 +- substrate-minimal/substorager/Cargo.toml | 2 +- substrate-minimal/subversioner/Cargo.toml | 2 +- 17 files changed, 44 insertions(+), 44 deletions(-) diff --git a/.maintain/release.sh b/.maintain/release.sh index 1fb895d9..370cfad9 100755 --- a/.maintain/release.sh +++ b/.maintain/release.sh @@ -6,16 +6,16 @@ cargo publish --locked -p submetadatan cargo publish --locked -p subrpcer cargo publish --locked -p subruntimer cargo publish --locked -p subspector -# substorager depends on subhasher, sleep for 15s -sleep 15 +# substorager depends on subhasher, sleep for 30s +sleep 30 cargo publish --locked -p substorager cargo publish --locked -p subversioner cargo publish --locked -p subalfred-util -# subalfred-core depends on subalfred-util, sleep for 15s -sleep 15 +# subalfred-core depends on subalfred-util, sleep for 30s +sleep 30 cargo publish --locked -p subalfred-core cargo publish --locked -p cmd-impl -# subalfred depends on cmd-impl, sleep for 15s -sleep 15 +# subalfred depends on cmd-impl, sleep for 30s +sleep 30 cargo publish --locked -p subalfred diff --git a/Cargo.lock b/Cargo.lock index f6e64190..18821f99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,7 +298,7 @@ dependencies = [ [[package]] name = "cmd-impl" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "quote", "syn", @@ -1663,7 +1663,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "anyhow", "array-bytes", @@ -1683,7 +1683,7 @@ dependencies = [ [[package]] name = "subalfred-core" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "array-bytes", "async-trait", @@ -1717,7 +1717,7 @@ dependencies = [ [[package]] name = "subalfred-util" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "tracing", "tracing-test", @@ -1725,7 +1725,7 @@ dependencies = [ [[package]] name = "subcryptor" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "base58", "blake2-rfc", @@ -1736,7 +1736,7 @@ dependencies = [ [[package]] name = "subgrandpa" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "parity-scale-codec", "serde", @@ -1744,7 +1744,7 @@ dependencies = [ [[package]] name = "subhasher" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "blake2-rfc", "byteorder", @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "submetadatan" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "frame-metadata", "scale-info", @@ -1764,7 +1764,7 @@ dependencies = [ [[package]] name = "subrpcer" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "affix", "once_cell", @@ -1777,14 +1777,14 @@ dependencies = [ [[package]] name = "subruntimer" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "serde", ] [[package]] name = "subspector" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "fxhash", "serde", @@ -1793,7 +1793,7 @@ dependencies = [ [[package]] name = "substorager" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "array-bytes", "parity-scale-codec", @@ -1802,7 +1802,7 @@ dependencies = [ [[package]] name = "subversioner" -version = "0.9.0-rc18" +version = "0.9.0-rc19" dependencies = [ "serde", ] diff --git a/Cargo.toml b/Cargo.toml index ae76a28d..034c5803 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,14 +20,14 @@ members = [ tokio = { version = "1.22" } tracing = { version = "0.1" } # hack-ink - cmd-impl = { version = "0.9.0-rc18", path = "bin/subalfred/src/command/impl" } - subalfred-core = { version = "0.9.0-rc18", path = "lib/core" } - subalfred-util = { version = "0.9.0-rc18", path = "lib/util" } - subcryptor = { version = "0.9.0-rc18", path = "substrate-minimal/subcryptor" } - subhasher = { version = "0.9.0-rc18", path = "substrate-minimal/subhasher" } - submetadatan = { version = "0.9.0-rc18", path = "substrate-minimal/submetadatan" } - subrpcer = { version = "0.9.0-rc18", path = "substrate-minimal/subrpcer" } - subruntimer = { version = "0.9.0-rc18", path = "substrate-minimal/subruntimer" } - subspector = { version = "0.9.0-rc18", path = "substrate-minimal/subspector" } - substorager = { version = "0.9.0-rc18", path = "substrate-minimal/substorager" } - subversioner = { version = "0.9.0-rc18", path = "substrate-minimal/subversioner" } + cmd-impl = { version = "0.9.0-rc19", path = "bin/subalfred/src/command/impl" } + subalfred-core = { version = "0.9.0-rc19", path = "lib/core" } + subalfred-util = { version = "0.9.0-rc19", path = "lib/util" } + subcryptor = { version = "0.9.0-rc19", path = "substrate-minimal/subcryptor" } + subhasher = { version = "0.9.0-rc19", path = "substrate-minimal/subhasher" } + submetadatan = { version = "0.9.0-rc19", path = "substrate-minimal/submetadatan" } + subrpcer = { version = "0.9.0-rc19", path = "substrate-minimal/subrpcer" } + subruntimer = { version = "0.9.0-rc19", path = "substrate-minimal/subruntimer" } + subspector = { version = "0.9.0-rc19", path = "substrate-minimal/subspector" } + substorager = { version = "0.9.0-rc19", path = "substrate-minimal/substorager" } + subversioner = { version = "0.9.0-rc19", path = "substrate-minimal/subversioner" } diff --git a/bin/subalfred/Cargo.toml b/bin/subalfred/Cargo.toml index 4c494f05..4ef3b0af 100644 --- a/bin/subalfred/Cargo.toml +++ b/bin/subalfred/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subalfred" readme = "../../README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [[bin]] name = "subalfred" diff --git a/bin/subalfred/src/command/impl/Cargo.toml b/bin/subalfred/src/command/impl/Cargo.toml index 33bb9d81..81b46554 100644 --- a/bin/subalfred/src/command/impl/Cargo.toml +++ b/bin/subalfred/src/command/impl/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "cmd-impl" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [lib] proc-macro = true diff --git a/bin/subalfred/src/command/impl/debug/Cargo.toml b/bin/subalfred/src/command/impl/debug/Cargo.toml index bd820aa1..9845782a 100644 --- a/bin/subalfred/src/command/impl/debug/Cargo.toml +++ b/bin/subalfred/src/command/impl/debug/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/hack-ink/subalfred" version = "0.0.0" [dependencies] -cmd-impl = { version = "0.9.0-rc18", path = "..", features = ["debug"] } +cmd-impl = { version = "0.9.0-rc19", path = "..", features = ["debug"] } [workspace] exclude = [] diff --git a/lib/core/Cargo.toml b/lib/core/Cargo.toml index bada8008..7d86afba 100644 --- a/lib/core/Cargo.toml +++ b/lib/core/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subalfred-core" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/lib/util/Cargo.toml b/lib/util/Cargo.toml index 3867a450..6bc33576 100644 --- a/lib/util/Cargo.toml +++ b/lib/util/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subalfred-util" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dev-dependencies] tracing = { workspace = true } diff --git a/substrate-minimal/subcryptor/Cargo.toml b/substrate-minimal/subcryptor/Cargo.toml index eaf3a7ae..90e6b1e7 100644 --- a/substrate-minimal/subcryptor/Cargo.toml +++ b/substrate-minimal/subcryptor/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subcryptor" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/subgrandpa/Cargo.toml b/substrate-minimal/subgrandpa/Cargo.toml index ed3a7a13..50fa3475 100644 --- a/substrate-minimal/subgrandpa/Cargo.toml +++ b/substrate-minimal/subgrandpa/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subgrandpa" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/subhasher/Cargo.toml b/substrate-minimal/subhasher/Cargo.toml index a6102ac5..0f47e50c 100644 --- a/substrate-minimal/subhasher/Cargo.toml +++ b/substrate-minimal/subhasher/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subhasher" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/submetadatan/Cargo.toml b/substrate-minimal/submetadatan/Cargo.toml index c87b675a..f3059cf7 100644 --- a/substrate-minimal/submetadatan/Cargo.toml +++ b/substrate-minimal/submetadatan/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "submetadatan" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/subrpcer/Cargo.toml b/substrate-minimal/subrpcer/Cargo.toml index 044ce488..bb54884a 100644 --- a/substrate-minimal/subrpcer/Cargo.toml +++ b/substrate-minimal/subrpcer/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subrpcer" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/subruntimer/Cargo.toml b/substrate-minimal/subruntimer/Cargo.toml index 587640ce..4a1f86b4 100644 --- a/substrate-minimal/subruntimer/Cargo.toml +++ b/substrate-minimal/subruntimer/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subruntimer" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/subspector/Cargo.toml b/substrate-minimal/subspector/Cargo.toml index 21b52b10..e34bab25 100644 --- a/substrate-minimal/subspector/Cargo.toml +++ b/substrate-minimal/subspector/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subspector" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/substorager/Cargo.toml b/substrate-minimal/substorager/Cargo.toml index 429fe7a6..e3017d43 100644 --- a/substrate-minimal/substorager/Cargo.toml +++ b/substrate-minimal/substorager/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "substorager" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io diff --git a/substrate-minimal/subversioner/Cargo.toml b/substrate-minimal/subversioner/Cargo.toml index 34b22196..e2cfbf5e 100644 --- a/substrate-minimal/subversioner/Cargo.toml +++ b/substrate-minimal/subversioner/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "subversioner" readme = "README.md" repository = "https://github.com/hack-ink/subalfred" -version = "0.9.0-rc18" +version = "0.9.0-rc19" [dependencies] # crates.io