aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--spake2/CHANGELOG.md8
-rw-r--r--spake2/Cargo.toml2
-rw-r--r--spake2/src/lib.rs2
4 files changed, 10 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4becd56..cc2d18c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -355,7 +355,7 @@ dependencies = [
[[package]]
name = "spake2"
-version = "0.3.0"
+version = "0.3.1"
dependencies = [
"bencher",
"curve25519-dalek",
diff --git a/spake2/CHANGELOG.md b/spake2/CHANGELOG.md
index 5394229..116f79b 100644
--- a/spake2/CHANGELOG.md
+++ b/spake2/CHANGELOG.md
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## 0.3.0 (2022-01-22)
+## 0.3.1 (2022-01-22)
+### Changed
+- Refactor internals ([#91])
+
+[#91]: https://github.com/RustCrypto/PAKEs/pull/91
+
+## 0.3.0 (2022-01-22) [YANKED]
### Added
- Initial `no_std` support ([#87])
- `getrandom` feature ([#88])
diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml
index 711c90f..edee1c5 100644
--- a/spake2/Cargo.toml
+++ b/spake2/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "spake2"
-version = "0.3.0"
+version = "0.3.1"
authors = ["Brian Warner <warner@lothar.com>"]
description = "The SPAKE2 password-authenticated key-exchange algorithm."
documentation = "https://docs.rs/spake2"
diff --git a/spake2/src/lib.rs b/spake2/src/lib.rs
index 7e8485f..abc6f08 100644
--- a/spake2/src/lib.rs
+++ b/spake2/src/lib.rs
@@ -248,7 +248,7 @@ use rand_core::{CryptoRng, RngCore};
#[cfg(feature = "getrandom")]
use rand_core::OsRng;
-/// Password
+/// Password type.
// TODO(tarcieri): avoid allocation?
#[derive(PartialEq, Eq, Clone)]
pub struct Password(Vec<u8>);