Skip to content

Commit 3247154

Browse files
committed
chore: bump version to 0.2.2
1 parent b5f8c14 commit 3247154

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "encryptman"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "AES-256-GCM encryption for application settings with HKDF key derivation"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)