Merge pull request #847 from zcash/hotfix/zcash_client_sqlite-0.7.1

Back-merge hotfix/zcash_client_sqlite-0.7.1
This commit is contained in:
str4d 2023-05-18 22:32:40 +01:00 committed by GitHub
commit 1bc8f9a1de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -9,6 +9,14 @@ and this library adheres to Rust's notion of
### Changed ### Changed
- Bumped dependencies to `hdwallet 0.4`. - 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 ## [0.7.0] - 2023-04-28
### Changed ### Changed
- Bumped dependencies to `zcash_client_backend 0.9`. - Bumped dependencies to `zcash_client_backend 0.9`.

View File

@ -1,7 +1,7 @@
[package] [package]
name = "zcash_client_sqlite" name = "zcash_client_sqlite"
description = "An SQLite-based Zcash light client" description = "An SQLite-based Zcash light client"
version = "0.7.0" version = "0.7.1"
authors = [ authors = [
"Jack Grigg <jack@z.cash>", "Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>" "Kris Nuttycombe <kris@electriccoin.co>"