zcash_client_backend 0.11.0

Closes zcash/librustzcash#962.
This commit is contained in:
Jack Grigg 2024-03-01 01:16:04 +00:00
parent 3135c31d1a
commit dfb6c65edd
4 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

@ -3006,7 +3006,7 @@ dependencies = [
[[package]]
name = "zcash_client_backend"
version = "0.10.0"
version = "0.11.0"
dependencies = [
"assert_matches",
"base64",

View File

@ -29,7 +29,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.10", path = "zcash_client_backend" }
zcash_client_backend = { version = "0.11", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2", path = "components/zcash_encoding" }
zcash_keys = { version = "0.1", path = "zcash_keys" }
zcash_note_encryption = "0.4"

View File

@ -53,7 +53,7 @@ and this library adheres to Rust's notion of
- `zcash_client_backend::fees`:
- Arguments to `ChangeStrategy::compute_balance` have changed.
## [0.11.0-pre-release] Unreleased
## [0.11.0] - 2024-03-01
### Added
- `zcash_client_backend`:
@ -122,6 +122,7 @@ and this library adheres to Rust's notion of
- `parse::Param::name`
### Changed
- Migrated to `zcash_primitives 0.14`, `orchard 0.7`.
- Several structs and functions now take an `AccountId` type parameter
parameter in order to decouple the concept of an account identifier from
the ZIP 32 account index. Many APIs that previously referenced

View File

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