From d2a21393489df366e2482c4f87c283f872cabb0a Mon Sep 17 00:00:00 2001 From: Kevin Lewi Date: Wed, 21 Sep 2022 20:31:31 -0700 Subject: [PATCH] Publishing v2.0.0 (#283) --- CHANGELOG.md | 9 +-------- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 938c4a0..ba0938e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,9 @@ # Changelog -## 2.0.0-pre.3 (July 11, 2022) +## 2.0.0 (September 21, 2022) * Synced implementation with draft-irtf-cfrg-opaque-10 * Changed argon2 salt length to recommended value (16 bytes) * Fixed issue from 2.0.0-pre.2 not pinning voprf dependency correctly - -## 2.0.0-pre.2 (April 22, 2022) -* Synced implementation with draft-irtf-cfrg-opaque-08 - -## 2.0.0-pre.1 (March 15, 2022) - -* Synced implementation with draft-irtf-cfrg-opaque-07 * Split out VOPRF implementation into its own crate * Added support for running the API without performing allocations diff --git a/Cargo.toml b/Cargo.toml index 2352d7d..66af835 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ getrandom = { version = "0.2", features = ["js"], optional = true } [dev-dependencies] bincode = "1" chacha20poly1305 = "=0.10.0-pre" -criterion = "0.3" +criterion = "0.4" hex = "0.4" json = "0.12" p256 = { version = "0.11", default-features = false, features = [ diff --git a/README.md b/README.md index 270c0e6..dcfabbc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Installation Add the following line to the dependencies of your `Cargo.toml`: ``` -opaque-ke = "2.0.0-pre.3" +opaque-ke = "2" ``` ### Minimum Supported Rust Version