From 236c306dddbd1ee62389a86ebb87b7a18c7ba500 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 24 Jan 2026 07:11:08 -0700 Subject: [PATCH] hkdf: add CHANGELOG.md entry about `kdf` crate --- hkdf/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hkdf/CHANGELOG.md b/hkdf/CHANGELOG.md index 814c9b3..4de5e07 100644 --- a/hkdf/CHANGELOG.md +++ b/hkdf/CHANGELOG.md @@ -5,6 +5,9 @@ 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.13.0 (unreleased) +### Added +- Implement `kdf::Kdf` for `GenericHkdfExtract` ([#173]) + ### Changed - Removed `std` crate feature ([#105]) - Bump MSRV to 1.85 and edition to 2024 ([#114]) @@ -14,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#105]: https://github.com/RustCrypto/KDFs/pull/105 [#114]: https://github.com/RustCrypto/KDFs/pull/114 [#154]: https://github.com/RustCrypto/KDFs/pull/154 +[#173]: https://github.com/RustCrypto/KDFs/pull/173 ## 0.12.3 (2022-02-17) ### Fixed