From 289f1fdf302e3e842a62903213c495c87a441913 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Wed, 18 Oct 2023 14:58:03 -0600 Subject: [PATCH] Release 0.8.1 Signed-off-by: Daira Emma Hopwood --- Cargo.lock | 2 +- zcash_client_sqlite/CHANGELOG.md | 5 +++++ zcash_client_sqlite/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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 "