-
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.
* changelog * add panic fix to changelog * Apply suggestions from code review Co-authored-by: Arya <[email protected]> * chore: Release * update release-crates-dry-run workflow script * fix command in release script * change end of support --------- Co-authored-by: Arya <[email protected]>
- Loading branch information
1 parent
fea9f46
commit b894921
Showing
18 changed files
with
133 additions
and
96 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
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.15" | ||
version = "0.2.41-beta.16" | ||
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.40.0", features = ["full", "tracing", "test-util"] } | ||
tokio-test = "0.4.4" | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.15" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.16" } | ||
tower-test = "0.4.0" | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } | ||
|
||
[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.15" | ||
version = "0.2.41-beta.16" | ||
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.40.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } |
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.39" | ||
version = "1.0.0-beta.40" | ||
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.39", optional = true } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40", optional = true } | ||
|
||
[dev-dependencies] | ||
# Benchmarks | ||
|
@@ -168,7 +168,7 @@ rand_chacha = "0.3.1" | |
|
||
tokio = { version = "1.40.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.40" } | ||
|
||
[[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.39" | ||
version = "1.0.0-beta.40" | ||
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.15" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.15" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.16" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.16" } | ||
|
||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.39" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39" } | ||
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" } | ||
|
||
# prod feature progress-bar | ||
howudoin = { version = "0.1.2", optional = true } | ||
|
@@ -94,6 +94,6 @@ tokio = { version = "1.40.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.39", features = ["proptest-impl"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["proptest-impl"] } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" } | ||
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" } |
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.6" | ||
version = "0.1.0-alpha.7" | ||
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.39", features = ["shielded-scan"] } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.39" } | ||
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" } | ||
|
||
[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.39" | ||
version = "1.0.0-beta.40" | ||
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.39", features = ["async-error"] } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.40", 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.39" | ||
version = "1.0.0-beta.40" | ||
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.39" } | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.40" } | ||
|
||
# Optional dependencies | ||
|
||
|
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-rpc" | ||
version = "1.0.0-beta.39" | ||
version = "1.0.0-beta.40" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -100,16 +100,16 @@ zcash_address = { workspace = true, optional = true} | |
# Test-only feature proptest-impl | ||
proptest = { version = "1.4.0", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = [ | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.40", features = [ | ||
"json-conversion", | ||
] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.39" } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.39" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39", features = [ | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.40" } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.40" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.40", features = [ | ||
"rpc-client", | ||
] } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.39" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.40" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.40" } | ||
|
||
[build-dependencies] | ||
tonic-build = { version = "0.12.3", optional = true } | ||
|
@@ -122,17 +122,17 @@ proptest = "1.4.0" | |
thiserror = "1.0.64" | ||
tokio = { version = "1.40.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = [ | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.40", features = [ | ||
"proptest-impl", | ||
] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.39", features = [ | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.40", features = [ | ||
"proptest-impl", | ||
] } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.39", features = [ | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.40", features = [ | ||
"proptest-impl", | ||
] } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39", features = [ | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.40", features = [ | ||
"proptest-impl", | ||
] } | ||
|
||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39" } | ||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.40" } |
Oops, something went wrong.