From e5171f9d59b109fb77678452693dbdd9854000da Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 7 Feb 2021 15:06:53 -0800 Subject: [PATCH] argon2 v0.1.2 (#129) --- argon2/CHANGELOG.md | 6 ++++++ argon2/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/argon2/CHANGELOG.md b/argon2/CHANGELOG.md index 4c891cee..fcaf2923 100644 --- a/argon2/CHANGELOG.md +++ b/argon2/CHANGELOG.md @@ -5,6 +5,12 @@ 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.1.2 (2021-02-07) +### Fixed +- rustdoc typo ([#128]) + +[#128]: https://github.com/RustCrypto/password-hashes/pull/128 + ## 0.1.1 (2021-02-07) ### Added - `rand` feature; enabled-by-default ([#126]) diff --git a/argon2/Cargo.toml b/argon2/Cargo.toml index dd358226..76c413dd 100644 --- a/argon2/Cargo.toml +++ b/argon2/Cargo.toml @@ -4,7 +4,7 @@ description = """ Pure Rust implementation of the Argon2 password hashing function with support for the Argon2d, Argon2i, and Argon2id algorithmic variants """ -version = "0.1.1" +version = "0.1.2" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" documentation = "https://docs.rs/argon2"