From e7fb276b046efd93337b2d23e0605909aaf6e5bd Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 6 Jun 2023 14:37:38 -0600 Subject: [PATCH] Release zcash_proofs 0.12.0 --- zcash_client_backend/Cargo.toml | 2 +- zcash_client_sqlite/Cargo.toml | 2 +- zcash_extensions/Cargo.toml | 2 +- zcash_proofs/CHANGELOG.md | 2 ++ zcash_proofs/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index a52cf7c91..bcd0038e3 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -85,7 +85,7 @@ proptest = "1.0.0" rand_core = "0.6" rand_xorshift = "0.3" tempfile = "3.5.0" -zcash_proofs = { version = "0.11", path = "../zcash_proofs", default-features = false } +zcash_proofs = { version = "0.12", path = "../zcash_proofs", default-features = false } zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] } [features] diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index b825e18cf..c58dba2a7 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -52,7 +52,7 @@ rand_core = "0.6" regex = "1.4" tempfile = "3.5.0" zcash_note_encryption = "0.4" -zcash_proofs = { version = "0.11", path = "../zcash_proofs" } +zcash_proofs = { version = "0.12", path = "../zcash_proofs" } zcash_primitives = { version = "0.12", path = "../zcash_primitives", features = ["test-dependencies"] } zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] } diff --git a/zcash_extensions/Cargo.toml b/zcash_extensions/Cargo.toml index 640a912d7..912d78c7f 100644 --- a/zcash_extensions/Cargo.toml +++ b/zcash_extensions/Cargo.toml @@ -18,7 +18,7 @@ ff = "0.13" jubjub = "0.10" rand_core = "0.6" zcash_address = { version = "0.3", path = "../components/zcash_address" } -zcash_proofs = { version = "0.11", path = "../zcash_proofs" } +zcash_proofs = { version = "0.12", path = "../zcash_proofs" } [features] transparent-inputs = [] diff --git a/zcash_proofs/CHANGELOG.md b/zcash_proofs/CHANGELOG.md index 00c628dbe..f44adad6b 100644 --- a/zcash_proofs/CHANGELOG.md +++ b/zcash_proofs/CHANGELOG.md @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.12.0] - 2023-06-06 ### Changed - Bumped dependencies to `incrementalmerkletree 0.4`, `zcash_primitives 0.12` - MSRV is now 1.65.0. diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index eaa0c9c83..9930080d1 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.11.0" +version = "0.12.0" authors = [ "Jack Grigg ", ]