Merge pull request #828 from zcash/zcash_client_backend-0.9

`zcash_client_backend 0.9.0`, `zcash_client_sqlite 0.7.0`
This commit is contained in:
str4d 2023-04-28 03:28:45 +01:00 committed by GitHub
commit 581c686b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 3 deletions

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.9.0] - 2023-04-28
### Added
- `data_api::SentTransactionOutput::from_parts`
- `data_api::WalletRead::get_min_unspent_height`

View File

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

View File

@ -7,6 +7,10 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.7.0] - 2023-04-28
### Changed
- Bumped dependencies to `zcash_client_backend 0.9`.
### Removed
- The following deprecated types and methods have been removed from the public API:
- `wallet::ShieldedOutput`

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_client_sqlite"
description = "An SQLite-based Zcash light client"
version = "0.6.0"
version = "0.7.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"
@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.60"
[dependencies]
zcash_client_backend = { version = "0.8", path = "../zcash_client_backend" }
zcash_client_backend = { version = "0.9", path = "../zcash_client_backend" }
zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-features = false }
# Dependencies exposed in a public API: