diff --git a/Cargo.lock b/Cargo.lock index f08444e0..24ce0d77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "argon2" -version = "0.1.3" +version = "0.1.4" dependencies = [ "blake2", "hex-literal", diff --git a/argon2/CHANGELOG.md b/argon2/CHANGELOG.md index 620363e6..c186dbdd 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.4 (2021-02-28) +### Added +- `std` feature ([#141]) + +[#141]: https://github.com/RustCrypto/password-hashes/pull/141 + ## 0.1.3 (2021-02-12) ### Fixed - Salt-length related panic ([#135]) diff --git a/argon2/Cargo.toml b/argon2/Cargo.toml index ed85423c..1f1984af 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.3" +version = "0.1.4" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" documentation = "https://docs.rs/argon2"