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]] [[package]]
name = "zcash_proofs" name = "zcash_proofs"
version = "0.14.0" version = "0.15.0"
dependencies = [ dependencies = [
"bellman", "bellman",
"blake2b_simd", "blake2b_simd",

View File

@ -37,7 +37,7 @@ zcash_protocol = { version = "0.1", path = "components/zcash_protocol" }
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false } 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 # Shielded protocols
ff = "0.13" ff = "0.13"

View File

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

View File

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