File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.2.2] - 2026-08-06
9+
10+ ### Changed
11+
12+ - Upgrade ` aes-gcm ` from 0.10 to 0.11 (` aead ` 0.6)
13+ - Replace ` OsRng ` with ` getrandom ` directly (removed in ` rand_core ` 0.10)
14+ - Replace deprecated ` Nonce::from_slice ` / ` Key::from_slice ` with ` TryFrom `
15+ - Fix encrypt/decrypt to pass nonce by reference (` aead ` 0.6 API)
16+
817## [ 0.2.1] - 2026-07-28
918
1019### Changed
Original file line number Diff line number Diff line change 11[package ]
22name = " encryptman"
3- version = " 0.2.1 "
3+ version = " 0.2.2 "
44edition = " 2024"
55rust-version = " 1.85"
66description = " AES-256-GCM encryption for application settings with HKDF key derivation"
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Add this to your `Cargo.toml`:
2020
2121``` toml
2222[dependencies ]
23- encryptman = " 0.2.1 "
23+ encryptman = " 0.2.2 "
2424```
2525
2626## Quick Start
You can’t perform that action at this time.
0 commit comments