Update version strings for v1.0.0 alpha.17 release (#2750)

* Change versions for v1.0.0-alpha.17 release
This commit is contained in:
Conrado Gouvea 2021-09-14 14:41:50 -03:00 committed by GitHub
parent ec74f7a821
commit 8971d62727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 20 additions and 20 deletions

18
Cargo.lock generated
View File

@ -3761,7 +3761,7 @@ dependencies = [
[[package]]
name = "tower-batch"
version = "0.2.12"
version = "0.2.13"
dependencies = [
"color-eyre",
"ed25519-zebra",
@ -4497,7 +4497,7 @@ dependencies = [
[[package]]
name = "zebra-chain"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
dependencies = [
"aes",
"bech32",
@ -4552,7 +4552,7 @@ version = "1.0.0-alpha.0"
[[package]]
name = "zebra-consensus"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
dependencies = [
"bellman",
"blake2b_simd",
@ -4588,7 +4588,7 @@ dependencies = [
[[package]]
name = "zebra-network"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
dependencies = [
"bitflags",
"byteorder",
@ -4623,7 +4623,7 @@ version = "1.0.0-alpha.0"
[[package]]
name = "zebra-script"
version = "1.0.0-alpha.17"
version = "1.0.0-alpha.18"
dependencies = [
"displaydoc",
"hex",
@ -4636,7 +4636,7 @@ dependencies = [
[[package]]
name = "zebra-state"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
dependencies = [
"bincode",
"chrono",
@ -4670,7 +4670,7 @@ dependencies = [
[[package]]
name = "zebra-test"
version = "1.0.0-alpha.13"
version = "1.0.0-alpha.14"
dependencies = [
"color-eyre",
"futures 0.3.17",
@ -4694,7 +4694,7 @@ dependencies = [
[[package]]
name = "zebra-utils"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
dependencies = [
"color-eyre",
"hex",
@ -4709,7 +4709,7 @@ dependencies = [
[[package]]
name = "zebrad"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
dependencies = [
"abscissa_core",
"atty",

View File

@ -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.16 zebrad`
3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-alpha.17 zebrad`
4. Run `zebrad start`
If you're interested in testing out `zebrad` please feel free, but keep in mind

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "zebra-network"
version = "1.0.0-alpha.16"
version = "1.0.0-alpha.17"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
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
//
// TODO: generate this from crate metadata (#2375)
pub const USER_AGENT: &str = "/Zebra:1.0.0-alpha.16/";
pub const USER_AGENT: &str = "/Zebra:1.0.0-alpha.17/";
/// The Zcash network protocol version implemented by this crate, and advertised
/// during connection setup.

View File

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

View File

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

View File

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

View File

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

View File

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