diff --git a/CHANGELOG.md b/CHANGELOG.md index 28b34bf..d52f694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.11 (2026-04-24) +### Added +- HPKE Hybrid KEM sizes ([#218]) + +### Removed +- `Clone` bounds on `Box`/`Vec` conversions ([#209]) + +[#209]: https://github.com/RustCrypto/hybrid-array/pull/209 +[#218]: https://github.com/RustCrypto/hybrid-array/pull/218 + ## 0.4.10 (2026-03-31) ### Added - `AsMut>` impl for `Array` ([#193]) diff --git a/Cargo.lock b/Cargo.lock index 4b6cfe1..4a3f4d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,7 +31,7 @@ dependencies = [ [[package]] name = "hybrid-array" -version = "0.4.10" +version = "0.4.11" dependencies = [ "arbitrary", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index f246666..602bfac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hybrid-array" -version = "0.4.10" +version = "0.4.11" description = """ Hybrid typenum-based and const generic array types designed to provide the flexibility of typenum-based expressions while also allowing interoperability