From 347df29d59dfb2d0660e2c2a7809966909b66135 Mon Sep 17 00:00:00 2001 From: CPerezz Date: Tue, 9 Jan 2024 22:36:02 +0100 Subject: [PATCH 1/2] update: add missing README curves --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e2ea7bf3..bfe3b538 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This library provides efficient and flexible implementations of various halo2-fr The implementations were originally ported from [matterlabs/pairing](https://github.com/matter-labs/pairing/tree/master/src/bn256) and [zkcrypto/bls12-381](https://github.com/zkcrypto/bls12_381), but have been extended and optimized to cover a broader set of curves and use cases. Since its initial release, the library has expanded to include additional curves, along with the following features: -* `secp256k1`, `secp256r1`, and `grumpkin` curves, enhancing its usability across a range of cryptographic protocols. +* `secp256k1`, `secp256r1`, `pluto`, `eris` and `grumpkin` curves, enhancing its usability across a range of cryptographic protocols. * Assembly optimizations leading to significantly improved performance. * Various features related to serialization and deserialization of curve points and field elements. * Curve-specific optimizations and benchmarking capabilities. @@ -59,4 +59,4 @@ The library's top-level directories are organized as follows: * `benches`: Contains benchmarking tests. * `script`: Contains utility scripts. -* `src`: Contains the source code of the library, further subdivided into modules for each supported curve (`bn256`, `grumpkin`, `secp256k1`, `secp256r1`, `pasta`) and additional functionalities (`derive`, `tests`). +* `src`: Contains the source code of the library, further subdivided into modules for each supported curve (`bn256`, `grumpkin`, `secp256k1`, `secp256r1`, `secq256k1`, `pasta`, `pluto`, `eris`) and additional functionalities (`derive`, `tests`). From 14ec2f72447601580fa1f829c70fd0e6a989a61c Mon Sep 17 00:00:00 2001 From: CPerezz Date: Tue, 9 Jan 2024 22:36:15 +0100 Subject: [PATCH 2/2] update: Bump lib to 0.6.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a452b187..9678e8eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halo2curves" -version = "0.5.0" +version = "0.6.0" authors = ["Privacy Scaling Explorations team"] license = "MIT/Apache-2.0" edition = "2021"