-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Include zebra-* and tower-fallback versions and paths for tower-batch-control * Remove versions for dev-dependencise * fix(legal): Use correct licenses for tower-batch-control and zebra-network (#6927) * Don't modify whitespace * Resolve rustdoc and cargo-release warnings * Bump semver * Re-up Cargo.lock * Update README.md Co-authored-by: teor <[email protected]> * Update book/src/user/docker.md Co-authored-by: teor <[email protected]> * Update 'Future Work' section post stable release * Add release notes to CHANGELOG.md * Update CHANGELOG.md Co-authored-by: teor <[email protected]> * Remove Docker container change from the changelog Co-authored-by: teor <[email protected]> * Point at the appropriate zebra-* crate versions * Update ESTIMATED_RELEASE_HEIGHT to 2,121,200 * Add CHANGELOG summary of the 1.0.0 release * Update CHANGELOG.md * Update CHANGELOG.md Co-authored-by: teor <[email protected]> * Bump tower-* beta.* versions and use them --------- Co-authored-by: teor <[email protected]> Co-authored-by: Pili Guerra <[email protected]>
- Loading branch information
1 parent
26313fa
commit fe859bd
Showing
17 changed files
with
86 additions
and
59 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
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.1" | ||
version = "0.2.41-beta.2" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
description = "Tower middleware for batch request processing" | ||
# # Legal | ||
|
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.1" | ||
version = "0.2.41-beta.2" | ||
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" | ||
|
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.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Core Zcash data structures" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -116,7 +116,7 @@ rand_chacha = { version = "0.3.1", optional = true } | |
|
||
tokio = { version = "1.28.2", features = ["tracing"], optional = true } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.25", optional = true } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.26", optional = true } | ||
|
||
[dev-dependencies] | ||
# Benchmarks | ||
|
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.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Implementation of Zcash consensus checks" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -62,13 +62,13 @@ orchard = "0.4.0" | |
|
||
zcash_proofs = { version = "0.11.0", features = ["local-prover", "multicore", "download-params"] } | ||
|
||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.1" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.1" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.2" } | ||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.2" } | ||
|
||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.25" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.25" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.25" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.26" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.26" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.26" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26" } | ||
|
||
# prod feature progress-bar | ||
howudoin = { version = "0.1.2", optional = true } | ||
|
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.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
description = "Networking code for Zebra" | ||
# # Legal | ||
|
@@ -78,7 +78,7 @@ howudoin = { version = "0.1.2", optional = true } | |
proptest = { version = "1.2.0", optional = true } | ||
proptest-derive = { version = "0.3.0", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26" } | ||
|
||
[dev-dependencies] | ||
proptest = "1.2.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.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
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.25"} | ||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.26"} | ||
|
||
# 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.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -70,12 +70,12 @@ zcash_address = { version = "0.2.1", optional = true } | |
# Test-only feature proptest-impl | ||
proptest = { version = "1.2.0", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25", features = ["json-conversion"] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.25" } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.25" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.25" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.25" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.25" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26", features = ["json-conversion"] } | ||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.26" } | ||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.26" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.26" } | ||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.26" } | ||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.26" } | ||
|
||
[dev-dependencies] | ||
insta = { version = "1.29.0", features = ["redactions", "json", "ron"] } | ||
|
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-script" | ||
version = "1.0.0-beta.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
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.12" | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26" } | ||
|
||
thiserror = "1.0.40" | ||
displaydoc = "0.2.4" | ||
|
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-state" | ||
version = "1.0.0-beta.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "State contextual verification and storage code for Zebra" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -69,13 +69,13 @@ tracing = "0.1.37" | |
elasticsearch = { version = "8.5.0-alpha.1", package = "elasticsearch", optional = true } | ||
serde_json = { version = "1.0.96", package = "serde_json", optional = true } | ||
|
||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26" } | ||
|
||
# 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.25", optional = true } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.26", optional = true } | ||
proptest = { version = "1.2.0", optional = true } | ||
proptest-derive = { version = "0.3.0", optional = true } | ||
|
||
|
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-test" | ||
version = "1.0.0-beta.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Test harnesses and test vectors for Zebra" | ||
license = "MIT OR Apache-2.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-utils" | ||
version = "1.0.0-beta.25" | ||
version = "1.0.0-beta.26" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "Developer tools for Zebra maintenance and testing" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -70,11 +70,11 @@ tracing-error = "0.2.0" | |
tracing-subscriber = "0.3.17" | ||
thiserror = "1.0.40" | ||
|
||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.25" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.25" } | ||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.26" } | ||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26" } | ||
|
||
# These crates are needed for the block-template-to-proposal binary | ||
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.25", optional = true } | ||
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.26", optional = true } | ||
|
||
# These crates are needed for the zebra-checkpoints binary | ||
itertools = { version = "0.10.5", optional = true } | ||
|
Oops, something went wrong.