-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update `CHANGELOG.md` * Update EOS * Update CHANGELOG.md Co-authored-by: Arya <[email protected]> * Update `release crates` script * chore: Release --------- Co-authored-by: Arya <[email protected]>
- Loading branch information
Showing
20 changed files
with
125 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
set -ex | ||
|
||
# Check if necessary tools are installed | ||
if ! command -v git &> /dev/null || ! command -v cargo &> /dev/null; then | ||
if ! command -v git &>/dev/null || ! command -v cargo &>/dev/null; then | ||
echo "ERROR: Required tools (git, cargo) are not installed." | ||
exit 1 | ||
fi | ||
|
@@ -11,7 +11,7 @@ git config --global user.email "[email protected]" | |
git config --global user.name "Automated Release Test" | ||
|
||
# Ensure cargo-release is installed | ||
if ! cargo release --version &> /dev/null; then | ||
if ! cargo release --version &>/dev/null; then | ||
echo "ERROR: cargo release must be installed." | ||
exit 1 | ||
fi | ||
|
@@ -23,12 +23,11 @@ fi | |
cargo release version --verbose --execute --no-confirm --allow-branch '*' --workspace --exclude zebrad --exclude zebra-scan --exclude zebra-grpc patch | ||
|
||
# Due to a bug in cargo-release, we need to pass exact versions for alpha crates: | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.9 | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.7 | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-scan 0.1.0-alpha.10 | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebra-grpc 0.1.0-alpha.8 | ||
|
||
# Update zebrad: | ||
# TODO: Revert `2.0.0-rc.0` to `patch` in the next release candidate. | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebrad 2.0.0-rc.0 | ||
cargo release version --verbose --execute --no-confirm --allow-branch '*' --package zebrad patch | ||
# Continue with the release process: | ||
cargo release replace --verbose --execute --no-confirm --allow-branch '*' --package zebrad | ||
cargo release commit --verbose --execute --no-confirm --allow-branch '*' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tower-batch-control" | ||
version = "0.2.41-beta.16" | ||
version = "0.2.41-beta.17" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
description = "Tower middleware for batch request processing" | ||
# # Legal | ||
|
@@ -43,10 +43,10 @@ rand = "0.8.5" | |
|
||
tokio = { version = "1.41.0", features = ["full", "tracing", "test-util"] } | ||
tokio-test = "0.4.4" | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.16" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.17" } | ||
tower-test = "0.4.0" | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.41" } | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tower-fallback" | ||
version = "0.2.41-beta.16" | ||
version = "0.2.41-beta.17" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
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" | ||
|
@@ -24,4 +24,4 @@ tracing = "0.1.39" | |
[dev-dependencies] | ||
tokio = { version = "1.41.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.41" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zebra-chain" | ||
version = "1.0.0-beta.40" | ||
version = "1.0.0-beta.41" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Core Zcash data structures" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -145,7 +145,7 @@ proptest-derive = { version = "0.5.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.40", optional = true } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.41", optional = true } | ||
|
||
[dev-dependencies] | ||
# Benchmarks | ||
|
@@ -168,7 +168,7 @@ rand_chacha = "0.3.1" | |
|
||
tokio = { version = "1.41.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.41" } | ||
|
||
[[bench]] | ||
name = "block" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zebra-consensus" | ||
version = "1.0.0-beta.40" | ||
version = "1.0.0-beta.41" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Implementation of Zcash consensus checks" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -63,13 +63,13 @@ orchard.workspace = true | |
zcash_proofs = { workspace = true, features = ["multicore" ] } | ||
wagyu-zcash-parameters = "0.2.0" | ||
|
||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.16" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.16" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.17" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.17" } | ||
|
||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.40" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.40" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.40" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.40" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.41" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.41" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.41" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.41" } | ||
|
||
# prod feature progress-bar | ||
howudoin = { version = "0.1.2", optional = true } | ||
|
@@ -94,6 +94,6 @@ tokio = { version = "1.41.0", features = ["full", "tracing", "test-util"] } | |
tracing-error = "0.2.0" | ||
tracing-subscriber = "0.3.18" | ||
|
||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.40", features = ["proptest-impl"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.40", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.41", features = ["proptest-impl"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.41", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.41" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zebra-grpc" | ||
version = "0.1.0-alpha.7" | ||
version = "0.1.0-alpha.8" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Zebra gRPC interface" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -28,8 +28,8 @@ color-eyre = "0.6.3" | |
|
||
zcash_primitives.workspace = true | ||
|
||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.40", features = ["shielded-scan"] } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.40" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.41", features = ["shielded-scan"] } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.41" } | ||
|
||
[build-dependencies] | ||
tonic-build = "0.12.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zebra-network" | ||
version = "1.0.0-beta.40" | ||
version = "1.0.0-beta.41" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
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.5.0", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.40", features = ["async-error"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.41", features = ["async-error"] } | ||
|
||
[dev-dependencies] | ||
proptest = "1.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zebra-node-services" | ||
version = "1.0.0-beta.40" | ||
version = "1.0.0-beta.41" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "The interfaces of some Zebra node services" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -37,7 +37,7 @@ rpc-client = [ | |
shielded-scan = [] | ||
|
||
[dependencies] | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.40" } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.41" } | ||
|
||
# Optional dependencies | ||
|
||
|
Oops, something went wrong.