From f4ddc67a9cdb2cdfb9471c6172a965e345ec6f7a 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: Wed, 27 May 2026 17:29:12 +0300 Subject: [PATCH 1/2] Release aes-kw v0.3.1 --- Cargo.lock | 2 +- aes-kw/CHANGELOG.md | 2 +- aes-kw/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 383e187..c27ca76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ dependencies = [ [[package]] name = "aes-kw" -version = "0.3.0" +version = "0.3.1" dependencies = [ "aes", "const-oid", diff --git a/aes-kw/CHANGELOG.md b/aes-kw/CHANGELOG.md index 37252ae..04f9daf 100644 --- a/aes-kw/CHANGELOG.md +++ b/aes-kw/CHANGELOG.md @@ -4,7 +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). -## 0.3.1 (UNRELEASED) +## 0.3.1 (2026-05-27) ### Added - Implementation of `Copy`, `Clone`, and `Hash` traits for `Error` ([[#78]]) - Implementation of `ZeroizeOnDrop` gated on `zeroize` crate feature ([#80]) diff --git a/aes-kw/Cargo.toml b/aes-kw/Cargo.toml index 809d2d2..725e620 100644 --- a/aes-kw/Cargo.toml +++ b/aes-kw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes-kw" -version = "0.3.0" +version = "0.3.1" description = "NIST 800-38F AES Key Wrap (KW) and Key Wrap with Padding (KWP) modes" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" From 5861d1daf1da4bfa32d1547f84f84dff2a170b07 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: Wed, 27 May 2026 17:29:56 +0300 Subject: [PATCH 2/2] fix changelog ref --- aes-kw/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aes-kw/CHANGELOG.md b/aes-kw/CHANGELOG.md index 04f9daf..5dc05ef 100644 --- a/aes-kw/CHANGELOG.md +++ b/aes-kw/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 0.3.1 (2026-05-27) ### Added -- Implementation of `Copy`, `Clone`, and `Hash` traits for `Error` ([[#78]]) +- Implementation of `Copy`, `Clone`, and `Hash` traits for `Error` ([#78]) - Implementation of `ZeroizeOnDrop` gated on `zeroize` crate feature ([#80]) ### Changed