From a9589bf987860e3c81ac0be01f62f07f7c60584f Mon Sep 17 00:00:00 2001 From: Oscar Pepper Date: Fri, 20 Mar 2026 01:53:50 +0000 Subject: [PATCH 1/3] update changelog and cargo toml versions --- Cargo.lock | 2 +- regtest-launcher/Cargo.toml | 2 +- zcash_local_net/CHANGELOG.md | 15 +++++++++++++++ zcash_local_net/Cargo.toml | 3 +-- zcash_local_net/src/lib.rs | 1 - 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a792b77..e3a6027 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5053,7 +5053,7 @@ dependencies = [ [[package]] name = "zcash_local_net" -version = "0.4.0" +version = "0.5.0" dependencies = [ "getset", "hex", diff --git a/regtest-launcher/Cargo.toml b/regtest-launcher/Cargo.toml index 0cc834a..f33e67f 100644 --- a/regtest-launcher/Cargo.toml +++ b/regtest-launcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "regtest-launcher" -version = "0.0.0" +version = "0.1.0" edition = "2024" license = "MIT" diff --git a/zcash_local_net/CHANGELOG.md b/zcash_local_net/CHANGELOG.md index e101a92..8393581 100644 --- a/zcash_local_net/CHANGELOG.md +++ b/zcash_local_net/CHANGELOG.md @@ -15,6 +15,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [0.5.0] - 2026-03-20 + +### Deprecated + +### Added + +### Changed +- updated underlying zebra versions: + - zebra-node-services v4.0.0 + - zebra-chain v6.0.0 + - zebra-rpc v6.0.0 +- `validator::zebrad::Zebrad`: `client` field updated `RpcRequestClient` type to zebra-node-services v4.0.0 + +### Removed + ## [0.4.0] - 2026-02-28 ### Deprecated diff --git a/zcash_local_net/Cargo.toml b/zcash_local_net/Cargo.toml index 7c716c7..017c6ff 100644 --- a/zcash_local_net/Cargo.toml +++ b/zcash_local_net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zcash_local_net" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MIT" @@ -45,5 +45,4 @@ allowed_external_types = [ "zcash_protocol::PoolType", "zingo_common_components::protocol::ActivationHeights", "zingo_common_components::protocol::NetworkType", - "zebra_node_services::rpc_client::RpcRequestClient", ] diff --git a/zcash_local_net/src/lib.rs b/zcash_local_net/src/lib.rs index e29c3e7..856b8ea 100644 --- a/zcash_local_net/src/lib.rs +++ b/zcash_local_net/src/lib.rs @@ -52,7 +52,6 @@ pub use zcash_protocol::PoolType; /// External re-exported zcash types. pub mod protocol { pub use zcash_protocol::PoolType; - pub use zebra_node_services::rpc_client::RpcRequestClient; pub use zingo_common_components::protocol::{ActivationHeights, NetworkType}; } From f5df2f5c7bed92f1e9e4b7b2e42f3956b83ff8b7 Mon Sep 17 00:00:00 2001 From: Oscar Pepper Date: Fri, 20 Mar 2026 01:59:15 +0000 Subject: [PATCH 2/3] revert removal on zebra re-export --- Cargo.lock | 2 +- zcash_local_net/src/lib.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index e3a6027..32731ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3224,7 +3224,7 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "regtest-launcher" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/zcash_local_net/src/lib.rs b/zcash_local_net/src/lib.rs index 856b8ea..e29c3e7 100644 --- a/zcash_local_net/src/lib.rs +++ b/zcash_local_net/src/lib.rs @@ -52,6 +52,7 @@ pub use zcash_protocol::PoolType; /// External re-exported zcash types. pub mod protocol { pub use zcash_protocol::PoolType; + pub use zebra_node_services::rpc_client::RpcRequestClient; pub use zingo_common_components::protocol::{ActivationHeights, NetworkType}; } From 701d5e3f0aa495902295d20922ef151d8d51950a Mon Sep 17 00:00:00 2001 From: Oscar Pepper Date: Sat, 21 Mar 2026 00:48:12 +0000 Subject: [PATCH 3/3] revert removal of zebra type from external api allowance --- zcash_local_net/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/zcash_local_net/Cargo.toml b/zcash_local_net/Cargo.toml index 017c6ff..ad03c66 100644 --- a/zcash_local_net/Cargo.toml +++ b/zcash_local_net/Cargo.toml @@ -45,4 +45,5 @@ allowed_external_types = [ "zcash_protocol::PoolType", "zingo_common_components::protocol::ActivationHeights", "zingo_common_components::protocol::NetworkType", + "zebra_node_services::rpc_client::RpcRequestClient", ]