diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 5ce98350c..08146a4c6 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -84,7 +84,7 @@ proptest = "1.0.0" rand_core = "0.6" rand_xorshift = "0.3" tempfile = "3.1.0" -zcash_proofs = { version = "0.10", path = "../zcash_proofs", default-features = false } +zcash_proofs = { version = "0.11", path = "../zcash_proofs", default-features = false } zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] } [features] diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 19b4118ba..77ef0ea00 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -51,7 +51,7 @@ rand_core = "0.6" regex = "1.4" tempfile = "3" zcash_note_encryption = "0.3" -zcash_proofs = { version = "0.10", path = "../zcash_proofs" } +zcash_proofs = { version = "0.11", path = "../zcash_proofs" } zcash_primitives = { version = "0.11", path = "../zcash_primitives", features = ["test-dependencies"] } zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] } diff --git a/zcash_extensions/Cargo.toml b/zcash_extensions/Cargo.toml index f87edb115..a6afa0295 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.2", path = "../components/zcash_address" } -zcash_proofs = { version = "0.10", path = "../zcash_proofs" } +zcash_proofs = { version = "0.11", path = "../zcash_proofs" } [features] transparent-inputs = [] diff --git a/zcash_proofs/CHANGELOG.md b/zcash_proofs/CHANGELOG.md index 2ad568c82..ce9171cf6 100644 --- a/zcash_proofs/CHANGELOG.md +++ b/zcash_proofs/CHANGELOG.md @@ -7,6 +7,7 @@ and this library adheres to Rust's notion of ## [Unreleased] +## [0.11.0] - 2023-04-15 ### Changed - Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `jubjub 0.10`, `bellman 0.14`, `redjubjub 0.7`, `zcash_primitives 0.11`. diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 170a2a881..5c1f18e34 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.10.0" +version = "0.11.0" authors = [ "Jack Grigg ", ]