diff --git a/Cargo.lock b/Cargo.lock index 1e3c9054..76303b02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "blake2" -version = "0.10.4" +version = "0.10.5" dependencies = [ "digest", "hex-literal", @@ -27,9 +27,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.73" +version = "1.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" +checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" [[package]] name = "cfg-if" @@ -145,9 +145,9 @@ checksum = "f9b7d56ba4a8344d6be9729995e6b06f928af29998cdf79fe390cbf6b1fee838" [[package]] name = "libc" -version = "0.2.135" +version = "0.2.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c" +checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" [[package]] name = "md-5" diff --git a/blake2/CHANGELOG.md b/blake2/CHANGELOG.md index f8c6aa4e..fab24393 100644 --- a/blake2/CHANGELOG.md +++ b/blake2/CHANGELOG.md @@ -5,7 +5,13 @@ 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.4 (2022-02-17) +## 0.10.5 (2022-11-11) +### Fixed +- Implementation of the `KeyInit::new` method for MAC types ([#432]) + +[#432]: https://github.com/RustCrypto/hashes/pull/432 + +## 0.10.4 (2022-02-17) [YANKED] ### Fixed - Bug on big-endian targets ([#366]) diff --git a/blake2/Cargo.toml b/blake2/Cargo.toml index c4cd7282..ece77681 100644 --- a/blake2/Cargo.toml +++ b/blake2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake2" -version = "0.10.4" +version = "0.10.5" description = "BLAKE2 hash functions" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"