From df8e61d24b0292efea925d3460bc32e819492289 Mon Sep 17 00:00:00 2001 From: Kevin Lewi Date: Wed, 9 Oct 2024 22:13:13 -0700 Subject: [PATCH] Publishing v3.0.0 (#367) --- CHANGELOG.md | 19 +------------------ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23239ec..7233341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,35 +1,18 @@ # Changelog -## 3.0.0-pre.6 (TBD) +## 3.0.0 (October 10, 2024) * Synced implementation with draft-irtf-cfrg-opaque-16 * **Breaking: protocol context string changed from `RFCXXXX` to `OPAQUEv1-`** * Dropped unmaintained json crate in favor of serde_json * Updated dependencies - -## 3.0.0-pre.5 (September 18, 2024) * Increased MSRV to 1.74 -* Updated voprf dependency - -## 3.0.0-pre.4 (July 25, 2023) -* Updated voprf and curve25519-dalek dependencies - -## 3.0.0-pre.3 (June 7, 2023) * Adjusted curve25519 support logic * Adjusted key generation logic to be in line with commit 727b9ac of https://github.com/cfrg/draft-irtf-cfrg-opaque -* Updated voprf dependency - -## 3.0.0-pre.2 (March 14, 2023) * Updated VOPRF to draft 19 * **Breaking: backwards-incompatible changes introduced in OPRF protocol** * Added P384 testing support -* Increased MSRV to 1.65 -* Updating dependencies - -## 3.0.0-pre.1 (February 8, 2023) * Renaming of X25519 to Curve25519 -* Increased MSRV to 1.60 -* Updating dependencies ## 2.0.0 (September 21, 2022) * Synced implementation with draft-irtf-cfrg-opaque-10 diff --git a/Cargo.toml b/Cargo.toml index 652e11b..922cafe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ name = "opaque-ke" readme = "README.md" repository = "https://github.com/facebook/opaque-ke" rust-version = "1.74" -version = "3.0.0-pre.6" +version = "3.0.0" [features] argon2 = ["dep:argon2"] diff --git a/README.md b/README.md index 592e5aa..30a3c54 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 = "3.0.0-pre.5" +opaque-ke = "3" ``` ### Minimum Supported Rust Version