diff --git a/Cargo.lock b/Cargo.lock index a6d7c4d84..ad84075ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "aead" -version = "0.6.0" +version = "0.6.1" dependencies = [ "arrayvec", "blobby", diff --git a/aead/CHANGELOG.md b/aead/CHANGELOG.md index e92d73420..4dc86f338 100644 --- a/aead/CHANGELOG.md +++ b/aead/CHANGELOG.md @@ -5,6 +5,12 @@ 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.6.1 (2026-06-17) +### Changed +- Have `getrandom` feature enable `rand_core` ([#2452]) + +[#2452]: https://github.com/RustCrypto/traits/pull/2452 + ## 0.6.0 (2026-06-08) ### Added - Enable `missing_debug_implementations` lint and add `Debug` impls ([#1411]) diff --git a/aead/Cargo.toml b/aead/Cargo.toml index ad9ff9c74..5e169bc3d 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aead" -version = "0.6.0" +version = "0.6.1" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"