From e4636e0a970232c7e48ef129335d5c46759da312 Mon Sep 17 00:00:00 2001 From: Kevin Lewi Date: Thu, 11 Feb 2021 18:20:11 -0800 Subject: [PATCH] Releasing v0.3.1 (#141) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 4 +++- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c91614..49014dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3.1 (February 11, 2020) + +* Re-exporting the rand library (and including it as a dependency instead of + just rand_core) +* Exposing a convenience function for converting from byte array to Key type + ## 0.3.0 (February 8, 2020) * General API and documentation improvements, including the support of custom diff --git a/Cargo.lock b/Cargo.lock index f347b42..a88bf56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aead" version = "0.3.2" @@ -571,7 +573,7 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "opaque-ke" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index b4967dd..9b05912 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opaque-ke" -version = "0.3.0" +version = "0.3.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 7c9b136..23e16d7 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.3.0" +opaque-ke = "0.3.1" ``` Resources