diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a421ae..28b34bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.4.10 (2026-03-31) +### Added +- `AsMut>` impl for `Array` ([#193]) +- HQC KEM sizes ([#195]) + +[#193]: https://github.com/RustCrypto/hybrid-array/pull/193 +[#195]: https://github.com/RustCrypto/hybrid-array/pull/195 + ## 0.4.9 (2026-03-30) ### Added - Functions for casting from core references ([#181]) diff --git a/Cargo.lock b/Cargo.lock index 1bd2e8f..60cf5c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" [[package]] name = "hybrid-array" -version = "0.4.9" +version = "0.4.10" dependencies = [ "arbitrary", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index 6994580..b1d0f5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hybrid-array" -version = "0.4.9" +version = "0.4.10" description = """ Hybrid typenum-based and const generic array types designed to provide the flexibility of typenum-based expressions while also allowing interoperability