zcash_proofs 0.9.0

This commit is contained in:
Jack Grigg 2022-11-11 20:39:36 +00:00
parent c3b6e5a72a
commit c03ef4926a
5 changed files with 6 additions and 4 deletions

View File

@ -84,7 +84,7 @@ proptest = "1.0.0"
rand_core = "0.6"
rand_xorshift = "0.3"
tempfile = "3.1.0"
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
zcash_proofs = { version = "0.9", path = "../zcash_proofs" }
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }
[features]

View File

@ -47,7 +47,7 @@ proptest = "1.0.0"
rand_core = "0.6"
regex = "1.4"
tempfile = "3"
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
zcash_proofs = { version = "0.9", path = "../zcash_proofs" }
zcash_primitives = { version = "0.9", path = "../zcash_primitives", features = ["test-dependencies"] }
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }

View File

@ -18,7 +18,7 @@ ff = "0.12"
jubjub = "0.9"
rand_core = "0.6"
zcash_address = { version = "0.2", path = "../components/zcash_address" }
zcash_proofs = { version = "0.8", path = "../zcash_proofs" }
zcash_proofs = { version = "0.9", path = "../zcash_proofs" }
[features]
transparent-inputs = []

View File

@ -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.9.0] - 2022-11-12
### Changed
- Bumped dependencies to `zcash_primitives 0.9`.

View File

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