release zcash_proofs version 0.16.0

This commit is contained in:
Kris Nuttycombe 2024-08-19 13:45:18 -06:00
parent 098e46affe
commit 97c4a76c2d
4 changed files with 7 additions and 3 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -6,8 +6,12 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.16.0] - 2024-08-19
### Changed
- MSRV is now 1.70.0.
- Migrated to `zcash_primitives 0.16`.
## [0.15.0] - 2024-03-25

View File

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