From cec3c0bf848f0567572e6254bb19021a649d0670 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 5 May 2021 09:23:34 -0700 Subject: [PATCH] sha2 v0.9.4 --- Cargo.lock | 2 +- sha2/CHANGELOG.md | 13 ++++++++++++- sha2/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 60621a3c..60e5b3c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,7 +247,7 @@ dependencies = [ [[package]] name = "sha2" -version = "0.9.3" +version = "0.9.4" dependencies = [ "block-buffer", "cfg-if", diff --git a/sha2/CHANGELOG.md b/sha2/CHANGELOG.md index c7e3e7f4..d596a0dd 100644 --- a/sha2/CHANGELOG.md +++ b/sha2/CHANGELOG.md @@ -5,9 +5,20 @@ 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.4 (2021-05-05) +### Added +- Hardware accelerated SHA-256 for Apple M1 CPUs with `asm` feature ([#262]) + +### Changed +- Bump `sha2-asm` to v0.6.1 release ([#262]) +- Switch from `cpuid-bool` to `cpufeatures` ([#263]) + +[#262]: https://github.com/RustCrypto/hashes/pull/262 +[#263]: https://github.com/RustCrypto/hashes/pull/263 + ## 0.9.3 (2021-01-30) ### Changed -- Use the SHA extension backend with enabled `asm` feature. ([#224]) +- Use the SHA-NI extension backend with enabled `asm` feature. ([#224]) [#224]: https://github.com/RustCrypto/hashes/pull/224 diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index b03343ab..46bddad2 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2" -version = "0.9.3" +version = "0.9.4" description = """ Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512.