diff --git a/zcash_client_backend/CHANGELOG.md b/zcash_client_backend/CHANGELOG.md index 71be5a219..a14312302 100644 --- a/zcash_client_backend/CHANGELOG.md +++ b/zcash_client_backend/CHANGELOG.md @@ -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` diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index f67033777..d07c7944c 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -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 ", "Kris Nuttycombe " diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index 97f9b4bc3..c52597061 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -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` diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 4636c9120..ee55e2cd4 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -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 ", "Kris Nuttycombe " @@ -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: