zcash_client_sqlite 0.8.0-rc.4

This commit is contained in:
Kris Nuttycombe 2023-09-19 15:01:52 -06:00
parent 6d2c53111a
commit e7b3e9c04e
3 changed files with 14 additions and 6 deletions

2
Cargo.lock generated
View File

@ -2988,7 +2988,7 @@ dependencies = [
[[package]]
name = "zcash_client_sqlite"
version = "0.8.0-rc.3"
version = "0.8.0-rc.4"
dependencies = [
"assert_matches",
"bs58",

View File

@ -7,7 +7,13 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.8.0-rc.3] - 2023-09-12
## [0.8.0-rc.4] - 2023-09-19
### Notable Changes
- The `v_transactions` and `v_tx_outputs` views have changed in terms of what
columns are returned, and which result columns may be null. Please see the
`Changed` section below for additional details.
### Added
- `zcash_client_sqlite::commitment_tree` Types related to management of note
commitment trees using the `shardtree` crate.
@ -43,9 +49,11 @@ and this library adheres to Rust's notion of
- `zcash_client_sqlite::FsBlockDb::write_block_metadata` now overwrites any
existing metadata entries that have the same height as a new entry.
- The `v_transactions` and `v_tx_outputs` views no longer return the
internal database identifier for the transaction. The `txid` column
should be used instead. The `tx_index`, `expiry_height`, `raw` and
`fee_paid` columns may now be null for received transparent transactions.
internal database identifier for the transaction. The `txid` column should
be used instead. The `tx_index`, `expiry_height`, `raw`, `fee_paid`, and
`expired_unmined` columns will be null for received transparent
transactions, in addition to the other columns that were previously
permitted to be null.
### Removed
- The empty `wallet::transact` module has been removed.

View File

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