diff --git a/Cargo.lock b/Cargo.lock index 2346d051..f1964fd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3986,7 +3986,7 @@ dependencies = [ [[package]] name = "tower-batch" -version = "0.2.15" +version = "0.2.16" dependencies = [ "color-eyre", "ed25519-zebra", @@ -4753,7 +4753,7 @@ dependencies = [ [[package]] name = "zebra-chain" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" dependencies = [ "aes 0.6.0", "bech32", @@ -4804,11 +4804,11 @@ dependencies = [ [[package]] name = "zebra-client" -version = "1.0.0-alpha.0" +version = "1.0.0-beta.0" [[package]] name = "zebra-consensus" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" dependencies = [ "bellman", "blake2b_simd", @@ -4846,7 +4846,7 @@ dependencies = [ [[package]] name = "zebra-network" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" dependencies = [ "bitflags", "byteorder", @@ -4877,11 +4877,11 @@ dependencies = [ [[package]] name = "zebra-rpc" -version = "1.0.0-alpha.0" +version = "1.0.0-beta.0" [[package]] name = "zebra-script" -version = "1.0.0-alpha.20" +version = "1.0.0-beta.0" dependencies = [ "displaydoc", "hex", @@ -4894,7 +4894,7 @@ dependencies = [ [[package]] name = "zebra-state" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" dependencies = [ "bincode", "chrono", @@ -4928,7 +4928,7 @@ dependencies = [ [[package]] name = "zebra-test" -version = "1.0.0-alpha.16" +version = "1.0.0-beta.0" dependencies = [ "color-eyre", "futures 0.3.17", @@ -4952,7 +4952,7 @@ dependencies = [ [[package]] name = "zebra-utils" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" dependencies = [ "color-eyre", "hex", @@ -4967,7 +4967,7 @@ dependencies = [ [[package]] name = "zebrad" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" dependencies = [ "abscissa_core", "atty", diff --git a/README.md b/README.md index 6067233c..8d342e86 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ for your platform: 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.19 zebrad` +3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-beta.0 zebrad` 4. Run `zebrad start` (see [Running Zebra](user/run.md) for more information) If you're interested in testing out `zebrad` please feel free, but keep in mind diff --git a/book/src/user/install.md b/book/src/user/install.md index 532f34fe..8a0b20b8 100644 --- a/book/src/user/install.md +++ b/book/src/user/install.md @@ -9,7 +9,7 @@ for your platform: 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.19 zebrad` +3. Run `cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-beta.0 zebrad` 4. Run `zebrad start` (see [Running Zebra](user/run.md) for more information) 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 4af0cc99..fe3190b6 100644 --- a/tower-batch/Cargo.toml +++ b/tower-batch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-batch" -version = "0.2.15" +version = "0.2.16" authors = ["Zcash Foundation "] license = "MIT" edition = "2018" diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 5b1e3bb3..ba435bf4 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-chain" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-client/Cargo.toml b/zebra-client/Cargo.toml index cd86b398..4b140fd8 100644 --- a/zebra-client/Cargo.toml +++ b/zebra-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-client" -version = "1.0.0-alpha.0" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index f3ecf5ae..03f7ba61 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-consensus" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 49a1bb47..6cfe4122 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-network" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" 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 154c9bb0..9c59e9d9 100644 --- a/zebra-network/src/constants.rs +++ b/zebra-network/src/constants.rs @@ -127,7 +127,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.19/"; +pub const USER_AGENT: &str = "/Zebra:1.0.0-beta.0/"; /// The Zcash network protocol version implemented by this crate, and advertised /// during connection setup. diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index b2e1aa3f..1f599051 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-rpc" -version = "1.0.0-alpha.0" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 68518866..56b62f60 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-script" -version = "1.0.0-alpha.20" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index b8790991..e712f394 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-state" -version = "1.0.0-alpha.19" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index f227158b..82d787d8 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-test" -version = "1.0.0-alpha.16" +version = "1.0.0-beta.0" authors = ["Zcash Foundation "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index facba1d0..c5e2367d 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.19" +version = "1.0.0-beta.0" edition = "2018" # Prevent accidental publication of this utility crate. publish = false diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 176d66de..d7d8a9de 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.19" +version = "1.0.0-beta.0" edition = "2018" repository = "https://github.com/ZcashFoundation/zebra" # make `cargo run` use `zebrad` by default