halo2_proofs 0.1.0

Closes zcash/halo2#426.
This commit is contained in:
Jack Grigg 2022-05-10 21:58:34 +00:00
parent 50921f95f7
commit 3bc0c598ef
6 changed files with 7 additions and 9 deletions

View File

@ -1,7 +1,5 @@
# halo2 [![Crates.io](https://img.shields.io/crates/v/halo2.svg)](https://crates.io/crates/halo2) #
**IMPORTANT**: This library is in beta, and should not be used in production software.
## [Documentation](https://docs.rs/halo2)
## Minimum Supported Rust Version

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.0-beta.2", path = "../halo2_proofs" }
halo2_proofs = { version = "0.1", 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.0-beta.4", path = "../halo2_proofs" }
halo2_proofs = { version = "0.1", 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.1.0] - 2022-05-10
### Added
- `halo2_proofs::dev`:
- `MockProver::assert_satisfied`, for requiring that a circuit is satisfied.

View File

@ -1,6 +1,6 @@
[package]
name = "halo2_proofs"
version = "0.1.0-beta.4"
version = "0.1.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Ying Tong Lai <yingtong@electriccoin.co>",
@ -10,7 +10,7 @@ authors = [
edition = "2021"
rust-version = "1.56.1"
description = """
[BETA] Fast PLONK-based zero-knowledge proving system with no trusted setup
Fast PLONK-based zero-knowledge proving system with no trusted setup
"""
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"

View File

@ -1,12 +1,10 @@
# halo2_proofs [![Crates.io](https://img.shields.io/crates/v/halo2_proofs.svg)](https://crates.io/crates/halo2_proofs) #
**IMPORTANT**: This library is in beta, and should not be used in production software.
## [Documentation](https://docs.rs/halo2_proofs)
## Minimum Supported Rust Version
Requires Rust **1.51** or higher.
Requires Rust **1.56.1** or higher.
Minimum supported Rust version can be changed in the future, but it will be done with a
minor version bump.