V1.0.0-beta.0 (#2973)

* V1.0.0-beta.0

* Bump version in install.md
This commit is contained in:
Conrado Gouvea 2021-10-29 17:21:26 -03:00 committed by GitHub
parent 4367b232fc
commit e54917ae7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 25 additions and 25 deletions

22
Cargo.lock generated
View File

@ -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",

View File

@ -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

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "tower-batch"
version = "0.2.15"
version = "0.2.16"
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.19"
version = "1.0.0-beta.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "zebra-client"
version = "1.0.0-alpha.0"
version = "1.0.0-beta.0"
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.19"
version = "1.0.0-beta.0"
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.19"
version = "1.0.0-beta.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
edition = "2018"

View File

@ -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.

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "zebra-script"
version = "1.0.0-alpha.20"
version = "1.0.0-beta.0"
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.19"
version = "1.0.0-beta.0"
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.16"
version = "1.0.0-beta.0"
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.19"
version = "1.0.0-beta.0"
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.19"
version = "1.0.0-beta.0"
edition = "2018"
repository = "https://github.com/ZcashFoundation/zebra"
# make `cargo run` use `zebrad` by default