diff --git a/Cargo.lock b/Cargo.lock index d6f0a049f1..c9c624b56d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5897,7 +5897,7 @@ dependencies = [ [[package]] name = "zcash_client_sqlite" -version = "0.12.0" +version = "0.12.1" dependencies = [ "ambassador", "assert_matches", diff --git a/supply-chain/imports.lock b/supply-chain/imports.lock index ada5729de1..0d834618da 100644 --- a/supply-chain/imports.lock +++ b/supply-chain/imports.lock @@ -9,6 +9,10 @@ audited_as = "0.13.0" version = "0.12.0" audited_as = "0.11.2" +[[unpublished.zcash_client_sqlite]] +version = "0.12.1" +audited_as = "0.12.0" + [[unpublished.zcash_keys]] version = "0.4.0" audited_as = "0.3.0" @@ -270,6 +274,13 @@ user-id = 169181 user-login = "nuttycom" user-name = "Kris Nuttycombe" +[[publisher.zcash_client_sqlite]] +version = "0.12.0" +when = "2024-10-04" +user-id = 169181 +user-login = "nuttycom" +user-name = "Kris Nuttycombe" + [[publisher.zcash_encoding]] version = "0.2.0" when = "2022-10-19" diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index 6a646adfc3..771aa1b1fe 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -7,6 +7,16 @@ and this library adheres to Rust's notion of ## [Unreleased] +## [0.12.1] - 2024-10-10 + +### Fixed +- An error in scan progress computation was fixed. As part of this fix, wallet + summary information is now only returned in the case that some note + commitment tree size information can be determined, either from subtree root + download or from downloaded block data. NOTE: The recovery progress ratio may + be present as `0:0` in the case that the recovery range contains no notes; + this was not adequately documented in the previous release. + ## [0.12.0] - 2024-10-04 ### Added diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 38a251775e..e1db2d2130 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.12.0" +version = "0.12.1" authors = [ "Jack Grigg ", "Kris Nuttycombe "