diff --git a/Cargo.lock b/Cargo.lock index e594db32c..57991fdd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2988,7 +2988,7 @@ dependencies = [ [[package]] name = "zcash_client_sqlite" -version = "0.8.0" +version = "0.8.1" dependencies = [ "assert_matches", "bs58", diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index 2a044fc2b..405492a64 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this library adheres to Rust's notion of [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.1] - 2023-10-18 + +### Fixed +- Fixed a bug in `v_transactions` that was omitting value from identically-valued notes + ## [Unreleased] ## [0.8.0] - 2023-09-25 diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index bb2717717..b4605a08e 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.8.0" +version = "0.8.1" authors = [ "Jack Grigg ", "Kris Nuttycombe "