diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cbadd28..ebb13cfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog +## 0.2.19 +- Some preparations for OpenPGP V5 keys: `OpenPgpV4Fingerprint` is now an implementation of `OpenPgpFingerprint` +- `SignatureVerification` and `Failure` now have `toString()` implementations +- Logging: `logback-classic` is now an optional runtime dependency + ## 0.2.18 - Fix compatibility with PGPainless < 0.2.10 - Fix interoperability with Kleopatra diff --git a/README.md b/README.md index 5913b9b6..45e58fba 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:0.2.18' + implementation 'org.pgpainless:pgpainless-core:0.2.19' } ``` diff --git a/version.gradle b/version.gradle index c7322e38..c52e9904 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '0.2.19' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.69'