release zcash_proofs version 0.17.0

This commit is contained in:
Kris Nuttycombe 2024-08-26 16:40:44 -06:00
parent 8a8d20ec8e
commit df0679fd88
4 changed files with 8 additions and 3 deletions

2
Cargo.lock generated
View File

@ -6044,7 +6044,7 @@ dependencies = [
[[package]]
name = "zcash_proofs"
version = "0.16.0"
version = "0.17.0"
dependencies = [
"bellman",
"blake2b_simd",

View File

@ -41,7 +41,7 @@ zip321 = { version = "0.1", path = "components/zip321" }
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.17", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.16", path = "zcash_proofs", default-features = false }
zcash_proofs = { version = "0.17", path = "zcash_proofs", default-features = false }
# Shielded protocols
bellman = { version = "0.14", default-features = false, features = ["groth16"] }

View File

@ -7,6 +7,11 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.17.0] - 2024-08-26
### Changed
- Migrated to `zcash_primitives 0.17`.
## [0.16.0] - 2024-08-19
### Changed

View File

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