diff --git a/Cargo.lock b/Cargo.lock index ebdda4bf..3270ea54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3391,7 +3391,7 @@ dependencies = [ [[package]] name = "tower-batch" -version = "0.2.0" +version = "0.2.1" dependencies = [ "color-eyre", "ed25519-zebra 2.2.0", @@ -3966,7 +3966,7 @@ dependencies = [ [[package]] name = "zebra-chain" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "bech32", "bincode", @@ -4008,7 +4008,7 @@ version = "1.0.0-alpha.0" [[package]] name = "zebra-consensus" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "bellman", "bls12_381 0.3.1", @@ -4042,7 +4042,7 @@ dependencies = [ [[package]] name = "zebra-network" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "bitflags", "byteorder", @@ -4076,7 +4076,7 @@ version = "1.0.0-alpha.0" [[package]] name = "zebra-script" -version = "1.0.0-alpha.3" +version = "1.0.0-alpha.4" dependencies = [ "displaydoc", "hex", @@ -4089,7 +4089,7 @@ dependencies = [ [[package]] name = "zebra-state" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "chrono", "color-eyre", @@ -4119,7 +4119,7 @@ dependencies = [ [[package]] name = "zebra-test" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "color-eyre", "futures 0.3.12", @@ -4141,7 +4141,7 @@ dependencies = [ [[package]] name = "zebra-utils" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "color-eyre", "hex", @@ -4156,7 +4156,7 @@ dependencies = [ [[package]] name = "zebrad" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "abscissa_core", "atty", diff --git a/README.md b/README.md index d4b5af01..d0e3e4c1 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.2 zebrad` +3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-alpha.3 zebrad` 4. Run `zebrad start` If you're interested in testing out `zebrad` please feel free, but keep in mind diff --git a/tower-batch/Cargo.toml b/tower-batch/Cargo.toml index 7f9b3e64..1298eb8c 100644 --- a/tower-batch/Cargo.toml +++ b/tower-batch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-batch" -version = "0.2.0" +version = "0.2.1" authors = ["Zcash Foundation "] license = "MIT" edition = "2018" diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index d92195f1..61ce3a72 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-chain" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index fec49b07..acae8e76 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-consensus" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 653fa811..40ee0d57 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-network" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" 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 395e4d90..d638ca8e 100644 --- a/zebra-network/src/constants.rs +++ b/zebra-network/src/constants.rs @@ -61,7 +61,7 @@ pub const TIMESTAMP_TRUNCATION_SECONDS: i64 = 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.2/"; +pub const USER_AGENT: &str = "/🦓Zebra🦓:1.0.0-alpha.3/"; /// 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 6948682b..47baa9d0 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-script" -version = "1.0.0-alpha.3" +version = "1.0.0-alpha.4" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index b09c2e09..9b46d61e 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-state" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index eee85932..7af58f67 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-test" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 1e9ba8d3..6872ef74 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.2" +version = "1.0.0-alpha.3" edition = "2018" # Prevent accidental publication of this utility crate. publish = false diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 7a36e414..ec3d3315 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.2" +version = "1.0.0-alpha.3" edition = "2018" repository = "https://github.com/ZcashFoundation/zebra" # make `cargo run` use `zebrad` by default diff --git a/zebrad/src/components/tracing/component.rs b/zebrad/src/components/tracing/component.rs index 66bc2bab..e6539346 100644 --- a/zebrad/src/components/tracing/component.rs +++ b/zebrad/src/components/tracing/component.rs @@ -77,7 +77,7 @@ impl Component for Tracing { } fn version(&self) -> abscissa_core::Version { - abscissa_core::Version::parse("1.0.0-alpha.2").unwrap() + abscissa_core::Version::parse("1.0.0-alpha.3").unwrap() } fn before_shutdown(&self, _kind: Shutdown) -> Result<(), FrameworkError> {