From d8b088aece5659cecdce397ce48d6129b6c4c440 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 15 Jun 2023 20:50:04 +0300 Subject: [PATCH] Release sha2 v0.10.7 (#491) --- Cargo.lock | 10 +++++----- sha2/CHANGELOG.md | 6 ++++++ sha2/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 124ba657e..38aca5d9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,9 +140,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.144" +version = "0.2.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" +checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" [[package]] name = "md-5" @@ -214,7 +214,7 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.6" +version = "0.10.7" dependencies = [ "cfg-if", "cpufeatures", @@ -268,9 +268,9 @@ dependencies = [ [[package]] name = "subtle" -version = "2.4.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "tiger" diff --git a/sha2/CHANGELOG.md b/sha2/CHANGELOG.md index 127804644..a552266e5 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.7 (2023-06-15) +### Added +- AArch64 Neon-based backend ([#490]) + +[#490]: https://github.com/RustCrypto/hashes/pull/490 + ## 0.10.6 (2022-09-16) ### Added - Feature-gated OID support ([#405]) diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index a1b69c5ab..c25251db8 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha2" -version = "0.10.6" +version = "0.10.7" description = """ Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512.