From 212fe37f0809b8ecbaf3a40a0c490053633983e4 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 9 May 2021 12:23:12 -0700 Subject: [PATCH] aes v0.7.1 --- aes/CHANGELOG.md | 6 ++++++ aes/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/aes/CHANGELOG.md b/aes/CHANGELOG.md index fc5236d6..c4c71abf 100644 --- a/aes/CHANGELOG.md +++ b/aes/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.7.1 (2021-05-09) +### Fixed +- Restore `fixslice64.rs` ([#247]) + +[#247]: https://github.com/RustCrypto/block-ciphers/pull/247 + ## 0.7.0 (2021-04-29) ### Added - Auto-detection support for AES-NI; MSRV 1.49+ ([#208], [#214], [#215], [#216]) diff --git a/aes/Cargo.toml b/aes/Cargo.toml index e2d0eb41..be1d9da3 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes" -version = "0.7.0" +version = "0.7.1" description = """ Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael) including support for AES in counter mode (a.k.a. AES-CTR)