Release zcash_client_backend version 0.12.0

Closes #1079
This commit is contained in:
Kris Nuttycombe 2024-03-25 14:03:39 -06:00
parent a9c4bc171b
commit 777adb871d
5 changed files with 6 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3009,7 +3009,7 @@ dependencies = [
[[package]]
name = "zcash_client_backend"
version = "0.11.1"
version = "0.12.0"
dependencies = [
"assert_matches",
"base64",

View File

@ -30,7 +30,7 @@ categories = ["cryptography::cryptocurrencies"]
# Intra-workspace dependencies
equihash = { version = "0.2", path = "components/equihash" }
zcash_address = { version = "0.3", path = "components/zcash_address" }
zcash_client_backend = { version = "0.11", path = "zcash_client_backend" }
zcash_client_backend = { version = "0.12", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2", path = "components/zcash_encoding" }
zcash_keys = { version = "0.2", path = "zcash_keys" }
zcash_protocol = { version = "0.1", path = "components/zcash_protocol" }

View File

@ -7,6 +7,8 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.12.0] - 2024-03-25
### Added
- A new `orchard` feature flag has been added to make it possible to
build client code without `orchard` dependendencies. Additions and

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_client_backend"
description = "APIs for creating shielded Zcash light clients"
version = "0.11.1"
version = "0.12.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"

View File

@ -1114,6 +1114,7 @@ pub(crate) fn external_address_change_spends_detected_in_restore_from_seed<
assert_eq!(st.get_total_balance(account_id), amount_left);
}
#[allow(dead_code)]
pub(crate) fn zip317_spend<T: ShieldedPoolTester>() {
let mut st = TestBuilder::new()
.with_block_cache()