diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cf49c2..9d55950 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.1 (October 22, 2020) + +* Changed visibility of hash module to be public + ## 0.2.0 (September 3, 2020) * Added CipherSuite API for specifying underlying primitives diff --git a/Cargo.toml b/Cargo.toml index cc49a84..9ef29ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opaque-ke" -version = "0.2.0" +version = "0.2.1" repository = "https://github.com/novifinancial/opaque-ke" keywords = ["cryptography", "crypto", "opaque", "passwords", "authentication"] description = "An implementation of the OPAQUE password-authenticated key exchange protocol" diff --git a/README.md b/README.md index 6e51bd5..7320328 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 = "0.2.0" +opaque-ke = "0.2.1" ``` Resources