zcash_client_backend 0.6.0

This commit is contained in:
Jack Grigg 2022-11-11 20:42:55 +00:00
parent c03ef4926a
commit 98dd130f3a
4 changed files with 5 additions and 3 deletions

View File

@ -7,6 +7,7 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.6.0] - 2022-11-12
### Added
- Functionality that enables the receiving and spending of transparent funds,
behind the new `transparent-inputs` feature flag.

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_client_backend"
description = "APIs for creating shielded Zcash light clients"
version = "0.5.0"
version = "0.6.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"

View File

@ -65,7 +65,8 @@ and this library adheres to Rust's notion of
(and in the future, outputs to other pools). Values for this column should
be assigned by inference from the address type in the stored data.
- MSRV is now 1.56.1.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `jubjub 0.9`, `zcash_primitives 0.9`.
- Bumped dependencies to `ff 0.12`, `group 0.12`, `jubjub 0.9`,
`zcash_primitives 0.9`, `zcash_client_backend 0.6`.
- Renamed the following to use lower-case abbreviations (matching Rust
naming conventions):
- `zcash_client_sqlite::BlockDB` to `BlockDb`

View File

@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.56.1"
[dependencies]
zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" }
zcash_client_backend = { version = "0.6", path = "../zcash_client_backend" }
zcash_primitives = { version = "0.9", path = "../zcash_primitives" }
# Dependencies exposed in a public API: