From 0e16b2c34af201a77f1074e397d1264b78208801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Duquette?= Date: Tue, 16 Jun 2026 15:02:34 -0400 Subject: [PATCH] Release version 0.10.0 --- CHANGELOG.md | 12 +++++------- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- python/CHANGELOG.md | 11 +++++++++++ python/pyproject.toml | 2 +- 5 files changed, 24 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12c3de9a..2281882f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ 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/) -## [Unreleased] - +## [Unreleased] - + +## [0.10.0] - 2026-06-16 ### Breaking Changes @@ -18,17 +20,13 @@ if your code depends on the iterations to stay the same : `derive_key_pbkdf2`, ` ### Added - **`PasswordHashVersion::V2`**: new Argon2id-based password hashing using OWASP-recommended defaults (memory = 64 MiB, iterations = 3). This is now the default (`PasswordHashVersion::Latest`). +- Added a managed `key_derivation` module to derive `SecretKey` values from passwords and serialize the derivation parameters for later reuse. +- C#: Nullable annotations were added for nullable reference types. ### Changed - Multiple functions, such as `generate_key` and `hash_password`, now return a `Result` due to the `rand` library upgrade. -### Added - -- Added a managed `key_derivation` module to derive `SecretKey` values from passwords and serialize the derivation parameters for later reuse. - -- C#: Nullable annotations were added for nullable reference types. - ### Removed - C#: Removed `EncryptWithKeyAsString`, `EncryptWithPasswordAsString`, `DecryptWithKeyAsString`, `DecryptWithPasswordAsString`, diff --git a/Cargo.lock b/Cargo.lock index 347668f5..47ae7f46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -598,7 +598,7 @@ dependencies = [ [[package]] name = "devolutions-crypto" -version = "0.9.3" +version = "0.10.0" dependencies = [ "aead", "aes", @@ -637,7 +637,7 @@ dependencies = [ [[package]] name = "devolutions-crypto-cli" -version = "0.9.3" +version = "0.10.0" dependencies = [ "base64 0.11.0", "clap", @@ -646,7 +646,7 @@ dependencies = [ [[package]] name = "devolutions-crypto-ffi" -version = "0.9.3" +version = "0.10.0" dependencies = [ "base64 0.22.1", "devolutions-crypto", @@ -655,7 +655,7 @@ dependencies = [ [[package]] name = "devolutions-crypto-fuzz" -version = "0.9.3" +version = "0.10.0" dependencies = [ "arbitrary 1.4.2", "devolutions-crypto", @@ -664,14 +664,14 @@ dependencies = [ [[package]] name = "devolutions-crypto-python" -version = "0.9.3" +version = "0.10.0" dependencies = [ "uniffi", ] [[package]] name = "devolutions-crypto-uniffi" -version = "0.9.3" +version = "0.10.0" dependencies = [ "devolutions-crypto", "rust-argon2", diff --git a/Cargo.toml b/Cargo.toml index ee0bf256..f2357905 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -package.version = "0.9.3" +package.version = "0.10.0" members = [ "cli", "ffi", diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 32492404..35f8ba6e 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [2026.6.16] - 2026-06-16 + +### Breaking changes + +- The default PBKDF2 iterations has been increased from 10,000 to 600,000. + +### Added + +- **`PasswordHashVersion::V2`**: new Argon2id-based password hashing using OWASP-recommended defaults (memory = 64 MiB, iterations = 3). This is now the default (`PasswordHashVersion::Latest`). +- Added a managed `key_derivation` module to derive `SecretKey` values from passwords and serialize the derivation parameters for later reuse. + ## [2026.1.13] - 2026-01-13 **Supported Python versions: 3.10 - 3.14** diff --git a/python/pyproject.toml b/python/pyproject.toml index 97d5f207..295b86ce 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "devolutions-crypto" -version = "2026.6.1" +version = "2026.6.16" description = "An abstraction layer for the cryptography used by Devolutions" readme = "PYPI_README.md" authors = [