diff --git a/Cargo.lock b/Cargo.lock index 21850552..2eba57cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -144,7 +144,7 @@ checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" [[package]] name = "md-5" -version = "0.10.1" +version = "0.10.2" dependencies = [ "digest", "hex-literal", @@ -192,7 +192,7 @@ dependencies = [ [[package]] name = "sha1" -version = "0.10.1" +version = "0.10.2" dependencies = [ "cfg-if", "cpufeatures", @@ -212,7 +212,7 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.2" +version = "0.10.3" dependencies = [ "cfg-if", "cpufeatures", @@ -291,7 +291,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "whirlpool" -version = "0.10.1" +version = "0.10.2" dependencies = [ "digest", "hex-literal", diff --git a/md5/CHANGELOG.md b/md5/CHANGELOG.md index 0727ee23..9cdc6197 100644 --- a/md5/CHANGELOG.md +++ b/md5/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.10.2 (2022-08-30) +### Changed +- Ignore `asm` feature on unsupported targets ([#388]) + +[#388]: https://github.com/RustCrypto/hashes/pull/388 + ## 0.10.1 (2022-02-17) ### Fixed - Minimal versions build ([#363]) diff --git a/md5/Cargo.toml b/md5/Cargo.toml index 9b71d348..d874e84a 100644 --- a/md5/Cargo.toml +++ b/md5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md-5" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" # Also update html_root_url in lib.rs when bumping this description = "MD5 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/sha1/CHANGELOG.md b/sha1/CHANGELOG.md index 7d184fdf..6068a6e8 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.10.2 (2022-08-30) +### Changed +- Ignore `asm` feature on unsupported targets ([#388]) + +[#388]: https://github.com/RustCrypto/hashes/pull/388 + ## 0.10.1 (2022-02-17) ### Fixed - Minimal versions build ([#363]) diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index 1878d3e2..379e9e29 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha1" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" # Also update html_root_url in lib.rs when bumping this # on v0.10.x releases also release the sha-1 crate as well description = "SHA-1 hash function" authors = ["RustCrypto Developers"] diff --git a/sha2/CHANGELOG.md b/sha2/CHANGELOG.md index 13907854..a2ddd6da 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.10.3 (2022-08-30) +### Changed +- Ignore `asm` feature on unsupported targets ([#388]) + +[#388]: https://github.com/RustCrypto/hashes/pull/388 + ## 0.10.2 (2022-02-17) ### Fixed - Minimal versions build ([#363]) diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index 4f563f6e..07b37c31 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2" -version = "0.10.2" # Also update html_root_url in lib.rs when bumping this +version = "0.10.3" # Also update html_root_url in lib.rs when bumping this description = """ Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512. diff --git a/whirlpool/CHANGELOG.md b/whirlpool/CHANGELOG.md index 9ed49c88..cc65e217 100644 --- a/whirlpool/CHANGELOG.md +++ b/whirlpool/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.10.2 (2022-08-30) +### Changed +- Ignore `asm` feature on unsupported targets ([#388]) + +[#388]: https://github.com/RustCrypto/hashes/pull/388 + ## 0.10.1 (2022-02-17) ### Fixed - Minimal versions build ([#363]) diff --git a/whirlpool/Cargo.toml b/whirlpool/Cargo.toml index 573b28e4..65cb318b 100644 --- a/whirlpool/Cargo.toml +++ b/whirlpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whirlpool" -version = "0.10.1" # Also update html_root_url in lib.rs when bumping this +version = "0.10.2" # Also update html_root_url in lib.rs when bumping this description = "Whirlpool hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"