From c119b028f2a5c884bc3131d964ebbb4f909c6760 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 27 Jun 2022 09:43:56 -0600 Subject: [PATCH] balloon-hash v0.3.0 --- Cargo.lock | 2 +- balloon-hash/CHANGELOG.md | 9 +++++++++ balloon-hash/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fbf9a3d6..85469316 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "balloon-hash" -version = "0.2.1" +version = "0.3.0" dependencies = [ "crypto-bigint", "digest", diff --git a/balloon-hash/CHANGELOG.md b/balloon-hash/CHANGELOG.md index b6746c50..9e547f9c 100644 --- a/balloon-hash/CHANGELOG.md +++ b/balloon-hash/CHANGELOG.md @@ -5,6 +5,15 @@ 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-06-27) +### Added +- `Balloon::hash_into` ([#313]) + +### Changed +- Make `Error` enum non-exhaustive ([#313]) + +[#313]: https://github.com/RustCrypto/password-hashes/pull/313 + ## 0.2.1 (2022-06-16) ### Added - `zeroize` feature ([#312]) diff --git a/balloon-hash/Cargo.toml b/balloon-hash/Cargo.toml index 97d8be7c..d2ad891f 100644 --- a/balloon-hash/Cargo.toml +++ b/balloon-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "balloon-hash" -version = "0.2.1" +version = "0.3.0" description = "Pure Rust implementation of the Balloon password hashing function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"