From e64e56e0ba46c69ad9b8fb454a1fad19ccdf99fc Mon Sep 17 00:00:00 2001 From: Kaz Wesley Date: Thu, 30 Dec 2021 10:15:05 -0800 Subject: [PATCH] release ppv-lite86 0.2.16, BLAKE 0.4.1 --- hashes/blake/Cargo.toml | 4 ++-- utils-simd/ppv-lite86/CHANGELOG.md | 3 ++- utils-simd/ppv-lite86/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hashes/blake/Cargo.toml b/hashes/blake/Cargo.toml index d57552f..bd41c48 100644 --- a/hashes/blake/Cargo.toml +++ b/hashes/blake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake-hash" -version = "0.4.0" +version = "0.4.1" authors = ["The CryptoCorrosion Contributors"] license = "MIT/Apache-2.0" description = "BLAKE hash functions" @@ -11,7 +11,7 @@ categories = ["cryptography", "no-std"] [dependencies] block-buffer = "0.9" digest = "0.9" -simd = { package = "ppv-lite86", version = "0.2.6", optional = true } +simd = { package = "ppv-lite86", version = "0.2.16", optional = true } [features] default = ["simd", "std"] diff --git a/utils-simd/ppv-lite86/CHANGELOG.md b/utils-simd/ppv-lite86/CHANGELOG.md index 7f539a3..6e34be3 100644 --- a/utils-simd/ppv-lite86/CHANGELOG.md +++ b/utils-simd/ppv-lite86/CHANGELOG.md @@ -4,6 +4,7 @@ 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). -## [Unreleased] +## [0.2.16] ### Added +- add [u64; 4] conversion for generic vec256, to support BLAKE on non-x86. - impl `From` (rather than just `Into`) for conversions between `*_storage` types and arrays. diff --git a/utils-simd/ppv-lite86/Cargo.toml b/utils-simd/ppv-lite86/Cargo.toml index 17ee4b9..b457f54 100644 --- a/utils-simd/ppv-lite86/Cargo.toml +++ b/utils-simd/ppv-lite86/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ppv-lite86" -version = "0.2.15" +version = "0.2.16" authors = ["The CryptoCorrosion Contributors"] edition = "2018" license = "MIT/Apache-2.0"