Release zcash_proofs version 0.15.0

This commit is contained in:
Kris Nuttycombe 2024-03-25 11:23:53 -06:00
parent 181e8981b2
commit 2bda943a2e
4 changed files with 8 additions and 3 deletions

2
Cargo.lock generated
View File

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

View File

@ -37,7 +37,7 @@ zcash_protocol = { version = "0.1", path = "components/zcash_protocol" }
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.14", path = "zcash_proofs", default-features = false }
zcash_proofs = { version = "0.15", path = "zcash_proofs", default-features = false }
# Shielded protocols
ff = "0.13"

View File

@ -7,6 +7,11 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.15.0] - 2024-03-25
### Changed
- Migrated to `zcash_primitives 0.15`.
## [0.14.0] - 2024-03-01
### Added
- `impl zcash_primitives::sapling::prover::{SpendProver, OutputProver}` for

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_proofs"
description = "Zcash zk-SNARK circuits and proving APIs"
version = "0.14.0"
version = "0.15.0"
authors = [
"Jack Grigg <jack@z.cash>",
]