diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index 5b396f697..0db875617 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -9,6 +9,14 @@ and this library adheres to Rust's notion of ### Changed - Bumped dependencies to `hdwallet 0.4`. +## [0.7.1] - 2023-05-17 + +### Fixed +- Fixes a potential crash that could occur when attempting to read a memo from + sqlite when the memo value is `NULL`. At present, we return the empty memo + in this case; in the future, the `get_memo` API will be updated to reflect + the potential absence of memo data. + ## [0.7.0] - 2023-04-28 ### Changed - Bumped dependencies to `zcash_client_backend 0.9`. diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index abd1e64eb..395bd4961 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.7.0" +version = "0.7.1" authors = [ "Jack Grigg ", "Kris Nuttycombe "