diff --git a/CHANGELOG.md b/CHANGELOG.md index ba0938e8..b0766f7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 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 * Changed argon2 salt length to recommended value (16 bytes) diff --git a/Cargo.toml b/Cargo.toml index 4b4cce43..c8b5e862 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ name = "opaque-ke" readme = "README.md" repository = "https://github.com/novifinancial/opaque-ke" rust-version = "1.60" -version = "2.0.0" +version = "3.0.0-pre.1" [features] argon2 = ["dep:argon2"] diff --git a/README.md b/README.md index b1037d4d..a4f22f99 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" +opaque-ke = "3.0.0-pre.1" ``` ### Minimum Supported Rust Version