From 7ad6a68922e53d960543a277ae4f074714e90bad Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 25 Aug 2021 10:18:48 -0600 Subject: [PATCH] blake2 v0.9.2 (#305) --- Cargo.lock | 2 +- blake2/CHANGELOG.md | 6 ++++++ blake2/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e34bc6bd..d3c431b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "blake2" -version = "0.9.1" +version = "0.9.2" dependencies = [ "crypto-mac", "digest", diff --git a/blake2/CHANGELOG.md b/blake2/CHANGELOG.md index 22ee2af9..60bf2e2d 100644 --- a/blake2/CHANGELOG.md +++ b/blake2/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.9.2 (2021-08-25) +### Fixed +- Building with `simd_opt` on recent nightlies ([#301]) + +[#301]: https://github.com/RustCrypto/hashes/pull/301 + ## 0.9.1 (2020-10-26) ### Changed - Bump `opaque-debug` to v0.3 ([#168]) diff --git a/blake2/Cargo.toml b/blake2/Cargo.toml index 57d276bb..6d25e15a 100644 --- a/blake2/Cargo.toml +++ b/blake2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake2" -version = "0.9.1" +version = "0.9.2" description = "BLAKE2 hash functions" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"