diff --git a/CHANGELOG.md b/CHANGELOG.md index cd83f67e..59606bbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,3 +52,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 1.1.5 - released 2024-03-18 [Full Changelog](https://github.com/web-of-trust/php-privacy/compare/1.1.4...1.1.5) - Refactor isRevoked methods. + +## 1.1.6 - released 2024-03-22 +[Full Changelog](https://github.com/web-of-trust/php-privacy/compare/1.1.5...1.1.6) +- Refactor get key strength of key packet. +- Pass preferred symmetric to secret key packet encrypt diff --git a/src/Common/Config.php b/src/Common/Config.php index deb48ea1..e7ba7b62 100644 --- a/src/Common/Config.php +++ b/src/Common/Config.php @@ -28,7 +28,7 @@ */ final class Config { - const VERSION = 'PHP Privacy v1.1.5'; + const VERSION = 'PHP Privacy v1.1.6'; const COMMENT = 'https://github.com/web-of-trust/php-privacy'; private static HashAlgorithm $preferredHash = HashAlgorithm::Sha256;