zcash_proofs 0.5.0

This commit is contained in:
Jack Grigg 2021-03-26 18:53:42 +13:00
parent 725699c76b
commit 813525f0b5
5 changed files with 6 additions and 4 deletions

View File

@ -38,7 +38,7 @@ rand_core = "0.5.1"
rand_xorshift = "0.2"
tempfile = "3.1.0"
zcash_client_sqlite = { version = "0.2", path = "../zcash_client_sqlite" }
zcash_proofs = { version = "0.4", path = "../zcash_proofs" }
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
[features]
test-dependencies = ["proptest", "zcash_primitives/test-dependencies"]

View File

@ -27,7 +27,7 @@ zcash_primitives = { version = "0.5", path = "../zcash_primitives" }
[dev-dependencies]
rand_core = "0.5.1"
tempfile = "3"
zcash_proofs = { version = "0.4", path = "../zcash_proofs" }
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }
[features]
mainnet = []

View File

@ -16,4 +16,4 @@ zcash_primitives = { version = "0.5", path = "../zcash_primitives", features = [
ff = "0.8"
jubjub = "0.5.1"
rand_core = "0.5.1"
zcash_proofs = { version = "0.4.0", path = "../zcash_proofs" }
zcash_proofs = { version = "0.5", path = "../zcash_proofs" }

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.5.0] - 2021-03-26
### Added
- `zcash_proofs::ZcashParameters`
- `zcash_proofs::parse_parameters`

View File

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