diff --git a/README.md b/README.md index b887d6f0..69167e07 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/halo2/Cargo.toml b/halo2/Cargo.toml index ab1e188a..3014b4c2 100644 --- a/halo2/Cargo.toml +++ b/halo2/Cargo.toml @@ -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 diff --git a/halo2_gadgets/Cargo.toml b/halo2_gadgets/Cargo.toml index 50e5e416..f2b72200 100644 --- a/halo2_gadgets/Cargo.toml +++ b/halo2_gadgets/Cargo.toml @@ -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 } diff --git a/halo2_proofs/CHANGELOG.md b/halo2_proofs/CHANGELOG.md index 3ce35345..3e2404cc 100644 --- a/halo2_proofs/CHANGELOG.md +++ b/halo2_proofs/CHANGELOG.md @@ -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. diff --git a/halo2_proofs/Cargo.toml b/halo2_proofs/Cargo.toml index 85b24132..eabe51d8 100644 --- a/halo2_proofs/Cargo.toml +++ b/halo2_proofs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halo2_proofs" -version = "0.1.0-beta.4" +version = "0.1.0" authors = [ "Sean Bowe ", "Ying Tong Lai ", @@ -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" diff --git a/halo2_proofs/README.md b/halo2_proofs/README.md index a53afe38..7c226ff2 100644 --- a/halo2_proofs/README.md +++ b/halo2_proofs/README.md @@ -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.