zcash_client_sqlite 0.8.0-rc.1

This commit is contained in:
Jack Grigg 2023-09-08 19:52:43 +00:00
parent 9db68c76ee
commit 62e3299255
2 changed files with 6 additions and 4 deletions

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.8.0-rc.1] - 2023-09-08
### Added
- `zcash_client_sqlite::commitment_tree` Types related to management of note
commitment trees using the `shardtree` crate.
@ -22,9 +24,9 @@ and this library adheres to Rust's notion of
### Changed
- MSRV is now 1.65.0.
- Bumped dependencies to `hdwallet 0.4`, `incrementalmerkletree 0.5`, `bs58 0.5`,
`zcash_primitives 0.13`, `rusqlite 0.29`, `schemer-rusqlite 0.2.2`, `time 0.3.22`,
`tempfile 3.5`, `zcash_note_encryption 0.4`, `zcash_proofs 0.12`, `prost 0.12`
`zcash_client_backend 0.10`, `zcash_address 0.3`.
`prost 0.12`, `rusqlite 0.29`, `schemer-rusqlite 0.2.2`, `time 0.3.22`,
`tempfile 3.5`, `zcash_address 0.3`, `zcash_note_encryption 0.4`,
`zcash_primitives 0.13`, `zcash_client_backend 0.10`.
- Added dependencies on `shardtree 0.0`, `zcash_encoding 0.2`, `byteorder 1`
- A `CommitmentTree` variant has been added to `zcash_client_sqlite::wallet::init::WalletMigrationError`
- `min_confirmations` parameter values are now more strongly enforced. Previously,

View File

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