Release zcash_proofs version 0.15.0
This commit is contained in:
parent
181e8981b2
commit
2bda943a2e
|
@ -3219,7 +3219,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zcash_proofs"
|
name = "zcash_proofs"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bellman",
|
"bellman",
|
||||||
"blake2b_simd",
|
"blake2b_simd",
|
||||||
|
|
|
@ -37,7 +37,7 @@ zcash_protocol = { version = "0.1", path = "components/zcash_protocol" }
|
||||||
|
|
||||||
zcash_note_encryption = "0.4"
|
zcash_note_encryption = "0.4"
|
||||||
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false }
|
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false }
|
||||||
zcash_proofs = { version = "0.14", path = "zcash_proofs", default-features = false }
|
zcash_proofs = { version = "0.15", path = "zcash_proofs", default-features = false }
|
||||||
|
|
||||||
# Shielded protocols
|
# Shielded protocols
|
||||||
ff = "0.13"
|
ff = "0.13"
|
||||||
|
|
|
@ -7,6 +7,11 @@ and this library adheres to Rust's notion of
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.15.0] - 2024-03-25
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Migrated to `zcash_primitives 0.15`.
|
||||||
|
|
||||||
## [0.14.0] - 2024-03-01
|
## [0.14.0] - 2024-03-01
|
||||||
### Added
|
### Added
|
||||||
- `impl zcash_primitives::sapling::prover::{SpendProver, OutputProver}` for
|
- `impl zcash_primitives::sapling::prover::{SpendProver, OutputProver}` for
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zcash_proofs"
|
name = "zcash_proofs"
|
||||||
description = "Zcash zk-SNARK circuits and proving APIs"
|
description = "Zcash zk-SNARK circuits and proving APIs"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Jack Grigg <jack@z.cash>",
|
"Jack Grigg <jack@z.cash>",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue