Merge pull request #540 from zcash/release-0.1.0-beta.4

Release halo2_proofs 0.1.0-beta.4
This commit is contained in:
str4d 2022-04-06 12:23:23 +01:00 committed by GitHub
commit 1e6bb51790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 3 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to Rust's notion of
## [Unreleased]
## [0.1.0-beta.3] - 2022-04-06
### Changed
- Migrated to `halo2_proofs 0.1.0-beta.4`.
## [0.1.0-beta.2] - 2022-03-22
### Changed
- Migrated to `halo2_proofs 0.1.0-beta.3`.

View File

@ -1,6 +1,6 @@
[package]
name = "halo2_gadgets"
version = "0.1.0-beta.2"
version = "0.1.0-beta.3"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Jack Grigg <jack@electriccoin.co>",
@ -25,7 +25,7 @@ arrayvec = "0.7.0"
bitvec = "0.22"
ff = "0.11"
group = "0.11"
halo2_proofs = { version = "=0.1.0-beta.3", path = "../halo2_proofs" }
halo2_proofs = { version = "=0.1.0-beta.4", path = "../halo2_proofs" }
lazy_static = "1"
pasta_curves = "0.3"
proptest = { version = "1.0.0", optional = true }

View File

@ -7,6 +7,7 @@ and this project adheres to Rust's notion of
## [Unreleased]
## [0.1.0-beta.4] - 2022-04-06
### Changed
- PLONK prover was improved to avoid stack overflows when large numbers of gates
are involved in a proof.

View File

@ -1,6 +1,6 @@
[package]
name = "halo2_proofs"
version = "0.1.0-beta.3"
version = "0.1.0-beta.4"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Ying Tong Lai <yingtong@electriccoin.co>",