diff --git a/Cargo.lock b/Cargo.lock index 59451f7ebe..cd1680e4c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6044,7 +6044,7 @@ dependencies = [ [[package]] name = "zcash_proofs" -version = "0.16.0" +version = "0.17.0" dependencies = [ "bellman", "blake2b_simd", diff --git a/Cargo.toml b/Cargo.toml index 4a4fbd732c..6b2e0e94a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } diff --git a/supply-chain/audits.toml b/supply-chain/audits.toml index d2d22e1cbc..83fa292747 100644 --- a/supply-chain/audits.toml +++ b/supply-chain/audits.toml @@ -861,6 +861,12 @@ user-id = 6289 # Jack Grigg (str4d) start = "2021-03-26" end = "2025-04-22" +[[trusted.zcash_proofs]] +criteria = "safe-to-deploy" +user-id = 169181 # Kris Nuttycombe (nuttycom) +start = "2024-08-20" +end = "2025-08-26" + [[trusted.zcash_protocol]] criteria = "safe-to-deploy" user-id = 169181 # Kris Nuttycombe (nuttycom) diff --git a/supply-chain/imports.lock b/supply-chain/imports.lock index 9ed506b573..c3f51ffd4f 100644 --- a/supply-chain/imports.lock +++ b/supply-chain/imports.lock @@ -286,11 +286,11 @@ user-login = "nuttycom" user-name = "Kris Nuttycombe" [[publisher.zcash_proofs]] -version = "0.15.0" -when = "2024-03-25" -user-id = 6289 -user-login = "str4d" -user-name = "Jack Grigg" +version = "0.17.0" +when = "2024-08-26" +user-id = 169181 +user-login = "nuttycom" +user-name = "Kris Nuttycombe" [[publisher.zcash_protocol]] version = "0.3.0" diff --git a/zcash_proofs/CHANGELOG.md b/zcash_proofs/CHANGELOG.md index 9868d6eb0f..d659b0a025 100644 --- a/zcash_proofs/CHANGELOG.md +++ b/zcash_proofs/CHANGELOG.md @@ -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 diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index dbc5045394..45d75615ce 100644 --- a/zcash_proofs/Cargo.toml +++ b/zcash_proofs/Cargo.toml @@ -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 ", ]