diff --git a/Cargo.lock b/Cargo.lock index f390c92900..8021c6d03b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6042,7 +6042,7 @@ dependencies = [ [[package]] name = "zcash_proofs" -version = "0.15.0" +version = "0.16.0" dependencies = [ "bellman", "blake2b_simd", diff --git a/Cargo.toml b/Cargo.toml index 192069de6f..6a32048944 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } diff --git a/supply-chain/audits.toml b/supply-chain/audits.toml index d4839e4488..e4d9d6af62 100644 --- a/supply-chain/audits.toml +++ b/supply-chain/audits.toml @@ -583,6 +583,12 @@ criteria = "safe-to-deploy" delta = "0.15.1 -> 0.16.0" notes = "The primary change here is the switch from the `hdwallet` dependency to using `bip32`." +[[audits.zcash_proofs]] +who = "Kris Nuttycombe " +criteria = "safe-to-deploy" +delta = "0.15.0 -> 0.16.0" +notes = "This release involves only updates of previously-vetted dependencies." + [[audits.zerocopy]] who = "Daira-Emma Hopwood " criteria = "safe-to-deploy" diff --git a/zcash_proofs/CHANGELOG.md b/zcash_proofs/CHANGELOG.md index 55a296a0bc..9868d6eb0f 100644 --- a/zcash_proofs/CHANGELOG.md +++ b/zcash_proofs/CHANGELOG.md @@ -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 diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 73599a8dff..dbc5045394 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.15.0" +version = "0.16.0" authors = [ "Jack Grigg ", ]