zcash_client_backend 0.10.0-rc.1

This commit is contained in:
Jack Grigg 2023-09-08 19:50:53 +00:00
parent 87ca71b8db
commit 9db68c76ee
4 changed files with 5 additions and 4 deletions

View File

@ -7,6 +7,7 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.10.0-rc.1] - 2023-09-08
### Notable Changes
- `zcash_client_backend` now supports out-of-order scanning of blockchain history.

View File

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

View File

@ -24,7 +24,7 @@ and this library adheres to Rust's notion of
- 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.9`, `zcash_address 0.3`
`zcash_client_backend 0.10`, `zcash_address 0.3`.
- 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

@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.65"
[dependencies]
zcash_client_backend = { version = "0.9", path = "../zcash_client_backend" }
zcash_client_backend = { version = "=0.10.0-rc.1", path = "../zcash_client_backend" }
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false }
@ -62,7 +62,7 @@ tempfile = "3.5.0"
zcash_note_encryption = "0.4"
zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" }
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", features = ["test-dependencies"] }
zcash_client_backend = { version = "0.9", path = "../zcash_client_backend", features = ["test-dependencies"] }
zcash_client_backend = { version = "=0.10.0-rc.1", path = "../zcash_client_backend", features = ["test-dependencies"] }
zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] }
[features]