Update versions for Zebra v1.0.0 alpha.12 release (#2415)

* Update versions for zebra v1.0.0-alpha.12 release

* Update Cargo.lock

* Update release checklist with latest version changes to help keep track for future releases

* Remove reference to the fact that tower-fallback was not updated
This commit is contained in:
Pili Guerra 2021-07-01 08:59:32 +01:00 committed by GitHub
parent 76fca5f32f
commit 515dc4bf5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 28 additions and 28 deletions

View File

@ -67,15 +67,15 @@ Merge all these version increments as one commit, by squashing and rebasing the
You can use `fastmod` to interactively find and replace versions. You can use `fastmod` to interactively find and replace versions.
For example, for `zebra-1.0.0-alpha-3`, we did: For example, for `zebra-1.0.0-alpha-12`, we did:
``` ```
fastmod --extensions rs,toml,md --fixed-strings '1.0.0-alpha.3' '1.0.0-alpha.4' fastmod --extensions rs,toml,md --fixed-strings '1.0.0-alpha.12' '1.0.0-alpha.13'
fastmod --extensions rs,toml,md --fixed-strings '1.0.0-alpha.2' '1.0.0-alpha.3' fastmod --extensions rs,toml,md --fixed-strings '1.0.0-alpha.11' '1.0.0-alpha.12'
fastmod --extensions rs,toml,md --fixed-strings '0.2.0' '0.2.1' tower-batch fastmod --extensions rs,toml,md --fixed-strings '1.0.0-alpha.10' '1.0.0-alpha.11'
fastmod --extensions rs,toml,md --fixed-strings '0.2.9' '0.2.10' tower-batch
fastmod --extensions rs,toml,md --fixed-strings '0.2.8' '0.2.9' tower-fallback
``` ```
We skipped `tower-fallback`, because it hadn't changed since the last tag.
### Reviewing Version Bump Pull Requests ### Reviewing Version Bump Pull Requests
Check for missed changes by going to: Check for missed changes by going to:

20
Cargo.lock generated
View File

@ -3746,7 +3746,7 @@ dependencies = [
[[package]] [[package]]
name = "tower-batch" name = "tower-batch"
version = "0.2.9" version = "0.2.10"
dependencies = [ dependencies = [
"color-eyre", "color-eyre",
"ed25519-zebra", "ed25519-zebra",
@ -3766,7 +3766,7 @@ dependencies = [
[[package]] [[package]]
name = "tower-fallback" name = "tower-fallback"
version = "0.2.8" version = "0.2.9"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"pin-project 0.4.28", "pin-project 0.4.28",
@ -4482,7 +4482,7 @@ dependencies = [
[[package]] [[package]]
name = "zebra-chain" name = "zebra-chain"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
dependencies = [ dependencies = [
"aes", "aes",
"bech32", "bech32",
@ -4536,7 +4536,7 @@ version = "1.0.0-alpha.0"
[[package]] [[package]]
name = "zebra-consensus" name = "zebra-consensus"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
dependencies = [ dependencies = [
"bellman", "bellman",
"blake2b_simd", "blake2b_simd",
@ -4572,7 +4572,7 @@ dependencies = [
[[package]] [[package]]
name = "zebra-network" name = "zebra-network"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"byteorder", "byteorder",
@ -4607,7 +4607,7 @@ version = "1.0.0-alpha.0"
[[package]] [[package]]
name = "zebra-script" name = "zebra-script"
version = "1.0.0-alpha.12" version = "1.0.0-alpha.13"
dependencies = [ dependencies = [
"displaydoc", "displaydoc",
"hex", "hex",
@ -4620,7 +4620,7 @@ dependencies = [
[[package]] [[package]]
name = "zebra-state" name = "zebra-state"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
dependencies = [ dependencies = [
"chrono", "chrono",
"color-eyre", "color-eyre",
@ -4649,7 +4649,7 @@ dependencies = [
[[package]] [[package]]
name = "zebra-test" name = "zebra-test"
version = "1.0.0-alpha.10" version = "1.0.0-alpha.11"
dependencies = [ dependencies = [
"color-eyre", "color-eyre",
"futures 0.3.15", "futures 0.3.15",
@ -4673,7 +4673,7 @@ dependencies = [
[[package]] [[package]]
name = "zebra-utils" name = "zebra-utils"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
dependencies = [ dependencies = [
"color-eyre", "color-eyre",
"hex", "hex",
@ -4688,7 +4688,7 @@ dependencies = [
[[package]] [[package]]
name = "zebrad" name = "zebrad"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
dependencies = [ dependencies = [
"abscissa_core", "abscissa_core",
"atty", "atty",

View File

@ -40,7 +40,7 @@ Building `zebrad` requires [Rust](https://www.rust-lang.org/tools/install),
2. Install Zebra's build dependencies: 2. Install Zebra's build dependencies:
- **libclang:** the `libclang`, `libclang-dev`, `llvm`, or `llvm-dev` packages, depending on your package manager - **libclang:** the `libclang`, `libclang-dev`, `llvm`, or `llvm-dev` packages, depending on your package manager
- **clang** or another C++ compiler: `g++`, `Xcode`, or `MSVC` - **clang** or another C++ compiler: `g++`, `Xcode`, or `MSVC`
3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-alpha.11 zebrad` 3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-alpha.12 zebrad`
4. Run `zebrad start` 4. Run `zebrad start`
If you're interested in testing out `zebrad` please feel free, but keep in mind If you're interested in testing out `zebrad` please feel free, but keep in mind

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tower-batch" name = "tower-batch"
version = "0.2.9" version = "0.2.10"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT" license = "MIT"
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tower-fallback" name = "tower-fallback"
version = "0.2.8" version = "0.2.9"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT" license = "MIT"
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zebra-chain" name = "zebra-chain"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zebra-consensus" name = "zebra-consensus"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zebra-network" name = "zebra-network"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"

View File

@ -106,7 +106,7 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: u32 = 30 * 60;
/// [BIP 14]: https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki /// [BIP 14]: https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki
// //
// TODO: generate this from crate metadata (#2375) // TODO: generate this from crate metadata (#2375)
pub const USER_AGENT: &str = "/Zebra:1.0.0-alpha.11/"; pub const USER_AGENT: &str = "/Zebra:1.0.0-alpha.12/";
/// The Zcash network protocol version implemented by this crate, and advertised /// The Zcash network protocol version implemented by this crate, and advertised
/// during connection setup. /// during connection setup.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zebra-script" name = "zebra-script"
version = "1.0.0-alpha.12" version = "1.0.0-alpha.13"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zebra-state" name = "zebra-state"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "zebra-test" name = "zebra-test"
version = "1.0.0-alpha.10" version = "1.0.0-alpha.11"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"

View File

@ -2,7 +2,7 @@
name = "zebra-utils" name = "zebra-utils"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
edition = "2018" edition = "2018"
# Prevent accidental publication of this utility crate. # Prevent accidental publication of this utility crate.
publish = false publish = false

View File

@ -2,7 +2,7 @@
name = "zebrad" name = "zebrad"
authors = ["Zcash Foundation <zebra@zfnd.org>"] authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "1.0.0-alpha.11" version = "1.0.0-alpha.12"
edition = "2018" edition = "2018"
repository = "https://github.com/ZcashFoundation/zebra" repository = "https://github.com/ZcashFoundation/zebra"
# make `cargo run` use `zebrad` by default # make `cargo run` use `zebrad` by default