halo2_proofs 0.2.0

This commit is contained in:
Jack Grigg 2022-06-23 17:40:23 +00:00
parent 5641a64d3c
commit 7a22f3c9b6
4 changed files with 5 additions and 3 deletions

View File

@ -19,7 +19,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dependencies]
halo2_proofs = { version = "0.1", path = "../halo2_proofs" }
halo2_proofs = { version = "0.2", path = "../halo2_proofs" }
[lib]
bench = false

View File

@ -26,7 +26,7 @@ arrayvec = "0.7.0"
bitvec = "1"
ff = "0.12"
group = "0.12"
halo2_proofs = { version = "0.1", path = "../halo2_proofs" }
halo2_proofs = { version = "0.2", path = "../halo2_proofs" }
lazy_static = "1"
pasta_curves = "0.4"
proptest = { version = "1.0.0", optional = true }

View File

@ -6,6 +6,8 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.2.0] - 2022-06-23
### Added
- `halo2_proofs::circuit::Value`, a more usable and type-safe replacement for
`Option<V>` in circuit synthesis.

View File

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