From 8b53d4a0c4623a72c75960ee5168a98fa133fa21 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 28 Apr 2023 01:46:28 +0000 Subject: [PATCH] zcash_client_backend 0.9.0 --- zcash_client_backend/CHANGELOG.md | 2 ++ zcash_client_backend/Cargo.toml | 2 +- zcash_client_sqlite/CHANGELOG.md | 2 ++ zcash_client_sqlite/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) 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..84a1378e0 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/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] +### Changed +- Bumped dependencies to `zcash_client_backend 0.9`. ### Removed - The following deprecated types and methods have been removed from the public API: diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 4636c9120..168189df6 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -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: