diff --git a/Cargo.lock b/Cargo.lock index b8a91acf..c64fea63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aes" -version = "0.8.2" +version = "0.8.3" dependencies = [ "cfg-if", "cipher", diff --git a/aes/CHANGELOG.md b/aes/CHANGELOG.md index cdf781d8..37970b24 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.8.3 (2023-06-17) +### Added +- Support `aes_armv8` on Rust 1.61+ using `asm!` ([#365]) + +[#365]: https://github.com/RustCrypto/block-ciphers/pull/365 + ## 0.8.2 (2022-10-27) ### Fixed - Crate documentation around configuration flags ([#343]) diff --git a/aes/Cargo.toml b/aes/Cargo.toml index 5893df81..9aedfa8c 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes" -version = "0.8.2" +version = "0.8.3" description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"