From 88a5687a8feb61976da44e63375ce10cd58f1b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 24 Jul 2026 18:34:05 +0300 Subject: [PATCH 1/2] Release aes v0.9.2 --- Cargo.lock | 2 +- aes/CHANGELOG.md | 2 +- aes/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 743cfd39..5f5b8e5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "aes" -version = "0.9.1" +version = "0.9.2" dependencies = [ "cipher", "cpubits", diff --git a/aes/CHANGELOG.md b/aes/CHANGELOG.md index 4ce2bd65..b8da4185 100644 --- a/aes/CHANGELOG.md +++ b/aes/CHANGELOG.md @@ -5,7 +5,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). -## 0.9.2 (UNRELEASED) +## 0.9.2 (2026-07-24) ### Changed - Internal implementation of backends ([#560], [#575]) diff --git a/aes/Cargo.toml b/aes/Cargo.toml index 99a49dd6..dfd94b60 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes" -version = "0.9.1" +version = "0.9.2" description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" From 6d56fcda0fe7850001b5473ca8eaf42dcb0e810d Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Mon, 27 Jul 2026 07:04:42 +0300 Subject: [PATCH 2/2] Update release date --- aes/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aes/CHANGELOG.md b/aes/CHANGELOG.md index 21d825b3..8d0770d9 100644 --- a/aes/CHANGELOG.md +++ b/aes/CHANGELOG.md @@ -5,7 +5,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). -## 0.9.2 (2026-07-24) +## 0.9.2 (2026-07-27) ### Added - `hardware_accelerated` function ([#579])