diff --git a/CHANGELOG.md b/CHANGELOG.md index d20a639e..b4c48025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # PGPainless Changelog +## 0.2.10 +- Cleartext Signature Framework + - Reuse `ConsumerOptions` class for verification + - Return `OpenPgpMetadata` object as result of verification +- Change default compression algorithm from `UNCOMPRESSED` to `ZIP` +- Cleanup: Move Signature Verification code to dedicated internal stream + ## 0.2.9 - Allow customization of ASCII armor comment and version headers - Small bug fixes of SOP implementation diff --git a/README.md b/README.md index 294824c7..0317ba29 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:0.2.9' + implementation 'org.pgpainless:pgpainless-core:0.2.10' } ``` diff --git a/version.gradle b/version.gradle index b2c24de6..1d494671 100644 --- a/version.gradle +++ b/version.gradle @@ -1,7 +1,7 @@ allprojects { ext { shortVersion = '0.2.10' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.69'