zcash_proofs 0.14.0

Closes zcash/librustzcash#1034.
This commit is contained in:
Jack Grigg 2024-03-01 01:13:49 +00:00
parent 599aa45a56
commit d0c380114a
4 changed files with 6 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3205,7 +3205,7 @@ dependencies = [
[[package]]
name = "zcash_proofs"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"bellman",
"blake2b_simd",

View File

@ -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"

View File

@ -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`.

View File

@ -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>",
]