Update versions for zebra v1.0.0-alpha.11 release (#2334)

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

* Update Cargo.lock
This commit is contained in:
Pili Guerra 2021-06-18 10:37:58 +01:00 committed by GitHub
parent ff7c1c4523
commit 6396ac27d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 22 additions and 22 deletions

20
Cargo.lock generated
View File

@ -3746,7 +3746,7 @@ dependencies = [
[[package]]
name = "tower-batch"
version = "0.2.8"
version = "0.2.9"
dependencies = [
"color-eyre",
"ed25519-zebra",
@ -3766,7 +3766,7 @@ dependencies = [
[[package]]
name = "tower-fallback"
version = "0.2.7"
version = "0.2.8"
dependencies = [
"futures-core",
"pin-project 0.4.27",
@ -4435,7 +4435,7 @@ dependencies = [
[[package]]
name = "zebra-chain"
version = "1.0.0-alpha.10"
version = "1.0.0-alpha.11"
dependencies = [
"aes",
"bech32",
@ -4489,7 +4489,7 @@ version = "1.0.0-alpha.0"
[[package]]
name = "zebra-consensus"
version = "1.0.0-alpha.10"
version = "1.0.0-alpha.11"
dependencies = [
"bellman",
"blake2b_simd",
@ -4524,7 +4524,7 @@ dependencies = [
[[package]]
name = "zebra-network"
version = "1.0.0-alpha.10"
version = "1.0.0-alpha.11"
dependencies = [
"bitflags",
"byteorder",
@ -4559,7 +4559,7 @@ version = "1.0.0-alpha.0"
[[package]]
name = "zebra-script"
version = "1.0.0-alpha.11"
version = "1.0.0-alpha.12"
dependencies = [
"displaydoc",
"hex",
@ -4572,7 +4572,7 @@ dependencies = [
[[package]]
name = "zebra-state"
version = "1.0.0-alpha.10"
version = "1.0.0-alpha.11"
dependencies = [
"chrono",
"color-eyre",
@ -4602,7 +4602,7 @@ dependencies = [
[[package]]
name = "zebra-test"
version = "1.0.0-alpha.9"
version = "1.0.0-alpha.10"
dependencies = [
"color-eyre",
"futures 0.3.15",
@ -4624,7 +4624,7 @@ dependencies = [
[[package]]
name = "zebra-utils"
version = "1.0.0-alpha.10"
version = "1.0.0-alpha.11"
dependencies = [
"color-eyre",
"hex",
@ -4639,7 +4639,7 @@ dependencies = [
[[package]]
name = "zebrad"
version = "1.0.0-alpha.10"
version = "1.0.0-alpha.11"
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.10 zebrad`
3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-alpha.11 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.8"
version = "0.2.9"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT"
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "tower-fallback"
version = "0.2.7"
version = "0.2.8"
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.10"
version = "1.0.0-alpha.11"
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.10"
version = "1.0.0-alpha.11"
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.10"
version = "1.0.0-alpha.11"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
edition = "2018"

View File

@ -93,7 +93,7 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: u32 = 30 * 60;
///
/// [BIP 14]: https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki
// XXX can we generate this from crate metadata?
pub const USER_AGENT: &str = "/🦓Zebra🦓:1.0.0-alpha.10/";
pub const USER_AGENT: &str = "/🦓Zebra🦓:1.0.0-alpha.11/";
/// 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.11"
version = "1.0.0-alpha.12"
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.10"
version = "1.0.0-alpha.11"
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.9"
version = "1.0.0-alpha.10"
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.10"
version = "1.0.0-alpha.11"
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.10"
version = "1.0.0-alpha.11"
edition = "2018"
repository = "https://github.com/ZcashFoundation/zebra"
# make `cargo run` use `zebrad` by default