From 4529861f03c94ea9eff99f8c0771c43d7dcff7cd Mon Sep 17 00:00:00 2001 From: Arya Date: Tue, 28 Nov 2023 21:09:04 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 26 +++++++++++++------------- book/src/user/docker.md | 2 +- book/src/user/install.md | 4 ++-- tower-batch-control/Cargo.toml | 2 +- tower-fallback/Cargo.toml | 2 +- zebra-chain/Cargo.toml | 4 ++-- zebra-consensus/Cargo.toml | 14 +++++++------- zebra-network/Cargo.toml | 4 ++-- zebra-node-services/Cargo.toml | 4 ++-- zebra-rpc/Cargo.toml | 14 +++++++------- zebra-scan/Cargo.toml | 6 +++--- zebra-script/Cargo.toml | 4 ++-- zebra-state/Cargo.toml | 6 +++--- zebra-test/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 8 ++++---- zebrad/Cargo.toml | 18 +++++++++--------- 16 files changed, 60 insertions(+), 60 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 44e156b4958..7beeab9b197 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4607,7 +4607,7 @@ dependencies = [ [[package]] name = "tower-batch-control" -version = "0.2.41-beta.7" +version = "0.2.41-beta.8" dependencies = [ "color-eyre", "ed25519-zebra", @@ -4631,7 +4631,7 @@ dependencies = [ [[package]] name = "tower-fallback" -version = "0.2.41-beta.7" +version = "0.2.41-beta.8" dependencies = [ "futures-core", "pin-project", @@ -5603,7 +5603,7 @@ dependencies = [ [[package]] name = "zebra-chain" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "bitflags 2.4.1", "bitflags-serde-legacy", @@ -5664,7 +5664,7 @@ dependencies = [ [[package]] name = "zebra-consensus" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "bellman", "blake2b_simd", @@ -5710,7 +5710,7 @@ dependencies = [ [[package]] name = "zebra-network" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "bitflags 2.4.1", "byteorder", @@ -5751,7 +5751,7 @@ dependencies = [ [[package]] name = "zebra-node-services" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "color-eyre", "jsonrpc-core", @@ -5763,7 +5763,7 @@ dependencies = [ [[package]] name = "zebra-rpc" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "chrono", "futures", @@ -5795,7 +5795,7 @@ dependencies = [ [[package]] name = "zebra-scan" -version = "0.1.0-alpha.0" +version = "0.1.0-beta.1" dependencies = [ "bls12_381", "color-eyre", @@ -5818,7 +5818,7 @@ dependencies = [ [[package]] name = "zebra-script" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "displaydoc", "hex", @@ -5831,7 +5831,7 @@ dependencies = [ [[package]] name = "zebra-state" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "bincode", "chrono", @@ -5875,7 +5875,7 @@ dependencies = [ [[package]] name = "zebra-test" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "color-eyre", "futures", @@ -5903,7 +5903,7 @@ dependencies = [ [[package]] name = "zebra-utils" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" dependencies = [ "color-eyre", "hex", @@ -5924,7 +5924,7 @@ dependencies = [ [[package]] name = "zebrad" -version = "1.4.0" +version = "1.5.0" dependencies = [ "abscissa_core", "atty", diff --git a/book/src/user/docker.md b/book/src/user/docker.md index 0d37b7a847e..00228e1c158 100644 --- a/book/src/user/docker.md +++ b/book/src/user/docker.md @@ -17,7 +17,7 @@ docker run --detach zfnd/zebra:latest ### Build it locally ```shell -git clone --depth 1 --branch v1.4.0 https://github.com/ZcashFoundation/zebra.git +git clone --depth 1 --branch v1.5.0 https://github.com/ZcashFoundation/zebra.git docker build --file docker/Dockerfile --target runtime --tag zebra:local . docker run --detach zebra:local ``` diff --git a/book/src/user/install.md b/book/src/user/install.md index 83e14c87254..b42a45bf733 100644 --- a/book/src/user/install.md +++ b/book/src/user/install.md @@ -20,7 +20,7 @@ To compile Zebra directly from GitHub, or from a GitHub release source archive: ```sh git clone https://github.com/ZcashFoundation/zebra.git cd zebra -git checkout v1.4.0 +git checkout v1.5.0 ``` 3. Build and Run `zebrad` @@ -33,7 +33,7 @@ target/release/zebrad start ### Compiling from git using cargo install ```sh -cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.4.0 zebrad +cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.5.0 zebrad ``` ### Compiling on ARM diff --git a/tower-batch-control/Cargo.toml b/tower-batch-control/Cargo.toml index ab988483aeb..8b12c70d55f 100644 --- a/tower-batch-control/Cargo.toml +++ b/tower-batch-control/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-batch-control" -version = "0.2.41-beta.7" +version = "0.2.41-beta.8" authors = ["Zcash Foundation ", "Tower Maintainers "] description = "Tower middleware for batch request processing" # # Legal diff --git a/tower-fallback/Cargo.toml b/tower-fallback/Cargo.toml index ad10c2713bc..791093a3a48 100644 --- a/tower-fallback/Cargo.toml +++ b/tower-fallback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-fallback" -version = "0.2.41-beta.7" +version = "0.2.41-beta.8" authors = ["Zcash Foundation "] description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors." license = "MIT OR Apache-2.0" diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index a87d6f232ea..bf3f03cedfb 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-chain" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "Core Zcash data structures" license = "MIT OR Apache-2.0" @@ -126,7 +126,7 @@ proptest-derive = { version = "0.4.0", optional = true } rand = { version = "0.8.5", optional = true } rand_chacha = { version = "0.3.1", optional = true } -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.31", optional = true } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.32", optional = true } [dev-dependencies] # Benchmarks diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 3406fd422ca..731e6c1f565 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-consensus" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "Implementation of Zcash consensus checks" license = "MIT OR Apache-2.0" @@ -63,13 +63,13 @@ orchard = "0.6.0" zcash_proofs = { version = "0.13.0-rc.1", features = ["multicore" ] } wagyu-zcash-parameters = "0.2.0" -tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.7" } -tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.7" } +tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.8" } +tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.8" } -zebra-script = { path = "../zebra-script", version = "1.0.0-beta.31" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.31" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.31" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" } +zebra-script = { path = "../zebra-script", version = "1.0.0-beta.32" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.32" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.32" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32" } # prod feature progress-bar howudoin = { version = "0.1.2", optional = true } diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index a338a32da14..542b25f71a8 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-network" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation ", "Tower Maintainers "] description = "Networking code for Zebra" # # Legal @@ -83,7 +83,7 @@ howudoin = { version = "0.1.2", optional = true } proptest = { version = "1.4.0", optional = true } proptest-derive = { version = "0.4.0", optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31", features = ["async-error"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32", features = ["async-error"] } [dev-dependencies] proptest = "1.4.0" diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index cf640e046dc..a50fa4b35f5 100644 --- a/zebra-node-services/Cargo.toml +++ b/zebra-node-services/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-node-services" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "The interfaces of some Zebra node services" license = "MIT OR Apache-2.0" @@ -35,7 +35,7 @@ rpc-client = [ ] [dependencies] -zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.31" } +zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.32" } # Optional dependencies diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 7d86829ae9a..a8efede1ea6 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-rpc" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface" license = "MIT OR Apache-2.0" @@ -70,12 +70,12 @@ zcash_address = { version = "0.3.0", optional = true } # Test-only feature proptest-impl proptest = { version = "1.4.0", optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31", features = ["json-conversion"] } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.31" } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.31" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.31" } -zebra-script = { path = "../zebra-script", version = "1.0.0-beta.31" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.31" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32", features = ["json-conversion"] } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.32" } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.32" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.32" } +zebra-script = { path = "../zebra-script", version = "1.0.0-beta.32" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.32" } [dev-dependencies] insta = { version = "1.33.0", features = ["redactions", "json", "ron"] } diff --git a/zebra-scan/Cargo.toml b/zebra-scan/Cargo.toml index 47709df1a0d..49cbe5b7fe0 100644 --- a/zebra-scan/Cargo.toml +++ b/zebra-scan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-scan" -version = "0.1.0-alpha.0" +version = "0.1.0-beta.1" authors = ["Zcash Foundation "] description = "Shielded transaction scanner for the Zcash blockchain" license = "MIT OR Apache-2.0" @@ -19,8 +19,8 @@ categories = ["cryptography::cryptocurrencies"] # Production features that activate extra dependencies, or extra features in dependencies [dependencies] -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.31" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.32" } zcash_primitives = "0.13.0-rc.1" zcash_client_backend = "0.10.0-rc.1" diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index cb60d7ec10b..9dffcb5e9f0 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-script" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "Zebra script verification wrapping zcashd's zcash_script library" license = "MIT OR Apache-2.0" @@ -17,7 +17,7 @@ categories = ["api-bindings", "cryptography::cryptocurrencies"] [dependencies] zcash_script = "0.1.14" -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32" } thiserror = "1.0.48" displaydoc = "0.2.4" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index f528415542b..ce9912b2e97 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-state" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "State contextual verification and storage code for Zebra" license = "MIT OR Apache-2.0" @@ -76,13 +76,13 @@ tracing = "0.1.39" elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true } serde_json = { version = "1.0.108", package = "serde_json", optional = true } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31", features = ["async-error"] } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32", features = ["async-error"] } # prod feature progress-bar howudoin = { version = "0.1.2", optional = true } # test feature proptest-impl -zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.31", optional = true } +zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.32", optional = true } proptest = { version = "1.4.0", optional = true } proptest-derive = { version = "0.4.0", optional = true } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index 6fd05c515f8..927c4d28536 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-test" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "Test harnesses and test vectors for Zebra" license = "MIT OR Apache-2.0" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 19f5f01cd6f..ac3168e4a92 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-utils" -version = "1.0.0-beta.31" +version = "1.0.0-beta.32" authors = ["Zcash Foundation "] description = "Developer tools for Zebra maintenance and testing" license = "MIT OR Apache-2.0" @@ -74,11 +74,11 @@ tracing-error = "0.2.0" tracing-subscriber = "0.3.18" thiserror = "1.0.48" -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.31" } -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.32" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32" } # These crates are needed for the block-template-to-proposal binary -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.31", optional = true } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.32", optional = true } # These crates are needed for the zebra-checkpoints binary itertools = { version = "0.12.0", optional = true } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 4f54a2001f6..a5143a26b6f 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -1,7 +1,7 @@ [package] # Crate metadata name = "zebrad" -version = "1.4.0" +version = "1.5.0" authors = ["Zcash Foundation "] description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node" license = "MIT OR Apache-2.0" @@ -148,18 +148,18 @@ test_sync_past_mandatory_checkpoint_mainnet = [] test_sync_past_mandatory_checkpoint_testnet = [] [dependencies] -zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" } -zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.31" } -zebra-network = { path = "../zebra-network", version = "1.0.0-beta.31" } -zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.31" } -zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.31" } -zebra-state = { path = "../zebra-state", version = "1.0.0-beta.31" } +zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.32" } +zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.32" } +zebra-network = { path = "../zebra-network", version = "1.0.0-beta.32" } +zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.32" } +zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.32" } +zebra-state = { path = "../zebra-state", version = "1.0.0-beta.32" } # Experimental shielded-scan feature -zebra-scan = { path = "../zebra-scan", version = "0.1.0-alpha.0", optional = true } +zebra-scan = { path = "../zebra-scan", version = "0.1.0-beta.1", optional = true } # Required for crates.io publishing, but it's only used in tests -zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.31", optional = true } +zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.32", optional = true } abscissa_core = "0.7.0" clap = { version = "4.4.9", features = ["cargo"] }