From 968f20d4234664ff97199b44a069514e61fe4dae Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Fri, 27 Aug 2021 19:13:54 -0300 Subject: [PATCH] Update versions for zebra v1.0.0-alpha.16 release (#2670) * bump crate versions * update zebra-script Co-authored-by: Deirdre Connolly --- Cargo.lock | 14 +++++++------- README.md | 2 +- zebra-chain/Cargo.toml | 2 +- zebra-consensus/Cargo.toml | 2 +- zebra-network/Cargo.toml | 2 +- zebra-network/src/constants.rs | 2 +- zebra-script/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c7e0500c..4bb09397 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4497,7 +4497,7 @@ dependencies = [ [[package]] name = "zebra-chain" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" dependencies = [ "aes", "bech32", @@ -4552,7 +4552,7 @@ version = "1.0.0-alpha.0" [[package]] name = "zebra-consensus" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" dependencies = [ "bellman", "blake2b_simd", @@ -4588,7 +4588,7 @@ dependencies = [ [[package]] name = "zebra-network" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" dependencies = [ "bitflags", "byteorder", @@ -4623,7 +4623,7 @@ version = "1.0.0-alpha.0" [[package]] name = "zebra-script" -version = "1.0.0-alpha.16" +version = "1.0.0-alpha.17" dependencies = [ "displaydoc", "hex", @@ -4636,7 +4636,7 @@ dependencies = [ [[package]] name = "zebra-state" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" dependencies = [ "bincode", "chrono", @@ -4694,7 +4694,7 @@ dependencies = [ [[package]] name = "zebra-utils" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" dependencies = [ "color-eyre", "hex", @@ -4709,7 +4709,7 @@ dependencies = [ [[package]] name = "zebrad" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" dependencies = [ "abscissa_core", "atty", diff --git a/README.md b/README.md index 638acb22..43e620e8 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Building `zebrad` requires [Rust](https://www.rust-lang.org/tools/install), 2. Install Zebra's build dependencies: - **libclang:** the `libclang`, `libclang-dev`, `llvm`, or `llvm-dev` packages, depending on your package manager - **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.15 zebrad` +3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-alpha.16 zebrad` 4. Run `zebrad start` If you're interested in testing out `zebrad` please feel free, but keep in mind diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index d0930354..f6e844e9 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-chain" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index ba14687d..5e4a08fb 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-consensus" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 8d1a9b63..923e3464 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-network" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-network/src/constants.rs b/zebra-network/src/constants.rs index 5535ca1d..1d7dfff0 100644 --- a/zebra-network/src/constants.rs +++ b/zebra-network/src/constants.rs @@ -106,7 +106,7 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: u32 = 30 * 60; /// [BIP 14]: https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki // // TODO: generate this from crate metadata (#2375) -pub const USER_AGENT: &str = "/Zebra:1.0.0-alpha.15/"; +pub const USER_AGENT: &str = "/Zebra:1.0.0-alpha.16/"; /// The Zcash network protocol version implemented by this crate, and advertised /// during connection setup. diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 4ed7556e..4cc1f419 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-script" -version = "1.0.0-alpha.16" +version = "1.0.0-alpha.17" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 00a30e8a..84db7a77 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-state" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index bc745345..387fe43f 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -2,7 +2,7 @@ name = "zebra-utils" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" edition = "2018" # Prevent accidental publication of this utility crate. publish = false diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 8fc49d63..93b7c8c0 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -2,7 +2,7 @@ name = "zebrad" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" -version = "1.0.0-alpha.15" +version = "1.0.0-alpha.16" edition = "2018" repository = "https://github.com/ZcashFoundation/zebra" # make `cargo run` use `zebrad` by default