Release zcash_proofs version 0.21.0
This commit is contained in:
parent
0f78b4f9c4
commit
8c42a69bb5
|
@ -6427,7 +6427,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zcash_proofs"
|
||||
version = "0.20.0"
|
||||
version = "0.21.0"
|
||||
dependencies = [
|
||||
"bellman",
|
||||
"blake2b_simd",
|
||||
|
|
|
@ -43,7 +43,7 @@ zip321 = { version = "0.2", path = "components/zip321" }
|
|||
|
||||
zcash_note_encryption = "0.4.1"
|
||||
zcash_primitives = { version = "0.21", path = "zcash_primitives", default-features = false }
|
||||
zcash_proofs = { version = "0.20", path = "zcash_proofs", default-features = false }
|
||||
zcash_proofs = { version = "0.21", path = "zcash_proofs", default-features = false }
|
||||
|
||||
pczt = { version = "0.0", path = "pczt" }
|
||||
|
||||
|
|
|
@ -16,7 +16,8 @@ and this library adheres to Rust's notion of
|
|||
- `wallet::extract_and_store_transaction_from_pczt`
|
||||
|
||||
### Changed
|
||||
- Migrated to `sapling-crypto 0.4`, `zcash_keys 0.6`, `zcash_primitives 0.21`.
|
||||
- Migrated to `sapling-crypto 0.4`, `zcash_keys 0.6`, `zcash_primitives 0.21`,
|
||||
`zcash_proofs 0.21`.
|
||||
- `zcash_client_backend::data_api::AccountBalance`: Refactored to use `Balance`
|
||||
for transparent funds (issue #1411). It now has an `unshielded_balance()`
|
||||
method that returns `Balance`, allowing the unshielded spendable, unshielded
|
||||
|
|
|
@ -11,7 +11,8 @@ and this library adheres to Rust's notion of
|
|||
- `zcash_client_sqlite::AccountUuid`
|
||||
|
||||
### Changed
|
||||
- Migrated to `sapling-crypto 0.4`, `zcash_keys 0.6`, `zcash_primitives 0.21`.
|
||||
- Migrated to `sapling-crypto 0.4`, `zcash_keys 0.6`, `zcash_primitives 0.21`,
|
||||
`zcash_proofs 0.21`.
|
||||
- The `v_transactions` view has been modified:
|
||||
- The `account_id` column has been replaced with `account_uuid`.
|
||||
- The `v_tx_outputs` view has been modified:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "zcash_proofs"
|
||||
description = "Zcash zk-SNARK circuits and proving APIs"
|
||||
version = "0.20.0"
|
||||
version = "0.21.0"
|
||||
authors = [
|
||||
"Jack Grigg <jack@z.cash>",
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue