diff --git a/Cargo.lock b/Cargo.lock index 9af0e653..b187725b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "xaes-256-gcm" -version = "0.1.0-rc.3" +version = "0.1.0" dependencies = [ "aead", "aead-stream", diff --git a/xaes-256-gcm/CHANGELOG.md b/xaes-256-gcm/CHANGELOG.md index 1e5edefb..2a687f89 100644 --- a/xaes-256-gcm/CHANGELOG.md +++ b/xaes-256-gcm/CHANGELOG.md @@ -4,7 +4,5 @@ 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.1.0 (TBD) -- Initial release -- Add the optional `zeroize` feature by implementing `ZeroizeOnDrop` for - `Xaes256Gcm` to clear internal key material +## 0.1.0 (2026-08-24) +Initial release diff --git a/xaes-256-gcm/Cargo.toml b/xaes-256-gcm/Cargo.toml index cd9af917..e2e5fd8c 100644 --- a/xaes-256-gcm/Cargo.toml +++ b/xaes-256-gcm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xaes-256-gcm" -version = "0.1.0-rc.3" +version = "0.1.0" description = """ Pure Rust implementation of the XAES-256-GCM extended-nonce Authenticated Encryption with Associated Data (AEAD).