diff --git a/Cargo.lock b/Cargo.lock index a0365b0d..60621a3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ dependencies = [ [[package]] name = "sha-1" -version = "0.9.4" +version = "0.9.5" dependencies = [ "block-buffer", "cfg-if", diff --git a/sha1/CHANGELOG.md b/sha1/CHANGELOG.md index 44c7c1a9..17a53255 100644 --- a/sha1/CHANGELOG.md +++ b/sha1/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.5 (2021-05-05) +### Changed +- Switch from `cpuid-bool` to `cpufeatures` ([#263]) + +[#263]: https://github.com/RustCrypto/hashes/pull/263 + ## 0.9.4 (2021-02-16) ### Added - Expose compression function under the `compress` feature flag. ([#238]) diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index fc305076..9832ce8f 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha-1" -version = "0.9.4" +version = "0.9.5" description = "SHA-1 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"