diff --git a/CHANGELOG.md b/CHANGELOG.md index d535ead6..e7836c01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,3 +61,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 1.1.7 - released 2024-03-27 [Full Changelog](https://github.com/web-of-trust/php-privacy/compare/1.1.6...1.1.7) - Refactor OpenPGP revokeKey method. + +## 1.1.8 - released 2024-08-27 +[Full Changelog](https://github.com/web-of-trust/php-privacy/compare/1.1.7...1.1.8) +- Add checksum to none encrypted secret key packet. diff --git a/src/Common/Config.php b/src/Common/Config.php index e4c22042..04b04384 100644 --- a/src/Common/Config.php +++ b/src/Common/Config.php @@ -28,7 +28,7 @@ */ final class Config { - const VERSION = 'PHP Privacy v1.1.7'; + const VERSION = 'PHP Privacy v1.1.8'; const COMMENT = 'https://github.com/web-of-trust/php-privacy'; private static HashAlgorithm $preferredHash = HashAlgorithm::Sha256;