zcash_client_backend 0.6.0
This commit is contained in:
parent
c03ef4926a
commit
98dd130f3a
|
@ -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.
|
||||
|
|
|
@ -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>"
|
||||
|
|
|
@ -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`
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue