From a7431da030b14ff144a30638c7cd3604befc1512 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 9 Sep 2021 10:38:59 +0000 Subject: [PATCH] release sha2 v0.9.8 (#318) --- Cargo.lock | 2 +- sha2/CHANGELOG.md | 6 ++++++ sha2/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eaf6a3eda..cba495698 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,7 +271,7 @@ dependencies = [ [[package]] name = "sha2" -version = "0.9.7" +version = "0.9.8" dependencies = [ "block-buffer", "cfg-if", diff --git a/sha2/CHANGELOG.md b/sha2/CHANGELOG.md index 9b7bf0930..433465d0b 100644 --- a/sha2/CHANGELOG.md +++ b/sha2/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.8 (2021-09-09) +### Fixed +- Bug in the AVX2 backend ([#314]) + +[#314]: https://github.com/RustCrypto/hashes/pull/314 + ## 0.9.7 (2021-09-08) [YANKED] ### Added - x86 intrinsics support for SHA-512 ([#312]) diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index 26db65479..cf17feb8e 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2" -version = "0.9.7" +version = "0.9.8" description = """ Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512.