parent
599aa45a56
commit
d0c380114a
|
@ -3205,7 +3205,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zcash_proofs"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
dependencies = [
|
||||
"bellman",
|
||||
"blake2b_simd",
|
||||
|
|
|
@ -34,7 +34,7 @@ zcash_encoding = { version = "0.2", path = "components/zcash_encoding" }
|
|||
zcash_keys = { version = "0.0", path = "zcash_keys" }
|
||||
zcash_note_encryption = "0.4"
|
||||
zcash_primitives = { version = "0.14", path = "zcash_primitives", default-features = false }
|
||||
zcash_proofs = { version = "0.13", path = "zcash_proofs", default-features = false }
|
||||
zcash_proofs = { version = "0.14", path = "zcash_proofs", default-features = false }
|
||||
|
||||
# Shielded protocols
|
||||
ff = "0.13"
|
||||
|
|
|
@ -6,11 +6,14 @@ and this library adheres to Rust's notion of
|
|||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.14.0] - 2024-03-01
|
||||
### Added
|
||||
- `impl zcash_primitives::sapling::prover::{SpendProver, OutputProver}` for
|
||||
`zcash_proofs::prover::LocalTxProver`
|
||||
|
||||
### Changed
|
||||
- Migrated to `zcash_primitives 0.14`.
|
||||
- The `zcash_proofs::ZcashParameters` Sapling fields now use the parameter and
|
||||
viewing key newtypes defined in `zcash_primitives::sapling::circuit`.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "zcash_proofs"
|
||||
description = "Zcash zk-SNARK circuits and proving APIs"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
authors = [
|
||||
"Jack Grigg <jack@z.cash>",
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue