Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
arya2 committed Nov 29, 2023
1 parent d038917 commit 4529861
Show file tree
Hide file tree
Showing 16 changed files with 60 additions and 60 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -5763,7 +5763,7 @@ dependencies = [

[[package]]
name = "zebra-rpc"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
dependencies = [
"chrono",
"futures",
Expand Down Expand Up @@ -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",
Expand All @@ -5818,7 +5818,7 @@ dependencies = [

[[package]]
name = "zebra-script"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
dependencies = [
"displaydoc",
"hex",
Expand All @@ -5831,7 +5831,7 @@ dependencies = [

[[package]]
name = "zebra-state"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
dependencies = [
"bincode",
"chrono",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -5924,7 +5924,7 @@ dependencies = [

[[package]]
name = "zebrad"
version = "1.4.0"
version = "1.5.0"
dependencies = [
"abscissa_core",
"atty",
Expand Down
2 changes: 1 addition & 1 deletion book/src/user/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions book/src/user/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tower-batch-control/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tower-batch-control"
version = "0.2.41-beta.7"
version = "0.2.41-beta.8"
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
description = "Tower middleware for batch request processing"
# # Legal
Expand Down
2 changes: 1 addition & 1 deletion tower-fallback/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tower-fallback"
version = "0.2.41-beta.7"
version = "0.2.41-beta.8"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
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"
Expand Down
4 changes: 2 additions & 2 deletions zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-chain"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "Core Zcash data structures"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions zebra-consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-consensus"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "Implementation of Zcash consensus checks"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-network"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
description = "Networking code for Zebra"
# # Legal
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions zebra-node-services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-node-services"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "The interfaces of some Zebra node services"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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

Expand Down
14 changes: 7 additions & 7 deletions zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-rpc"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions zebra-scan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-scan"
version = "0.1.0-alpha.0"
version = "0.1.0-beta.1"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "Shielded transaction scanner for the Zcash blockchain"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions zebra-script/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-script"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "Zebra script verification wrapping zcashd's zcash_script library"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-state"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "State contextual verification and storage code for Zebra"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion zebra-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-test"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "Test harnesses and test vectors for Zebra"
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions zebra-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zebra-utils"
version = "1.0.0-beta.31"
version = "1.0.0-beta.32"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "Developer tools for Zebra maintenance and testing"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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 }
Expand Down
18 changes: 9 additions & 9 deletions zebrad/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
# Crate metadata
name = "zebrad"
version = "1.4.0"
version = "1.5.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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"] }
Expand Down

0 comments on commit 4529861

Please sign in to comment.