diff --git a/CHANGELOG.md b/CHANGELOG.md index f933f760..1b5cc621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog -## 1.3.7-SNAPSHOT -- Add `KeyRingUtils.injectCertification(keys, certification)` +## 1.3.7 - Bugfix: Fix signature verification when `DecryptionStream` is drained byte-by-byte using `read()` call +- Add `KeyRingUtils.injectCertification(keys, certification)` - Add `PGPainless.asciiArmor(key, outputStream)` - Add `PGPainless.asciiArmor(signature)` diff --git a/README.md b/README.md index b8bd3c51..7cdd25e4 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.3.6' + implementation 'org.pgpainless:pgpainless-core:1.3.7' } ``` diff --git a/pgpainless-sop/README.md b/pgpainless-sop/README.md index ad96b8dc..ab074514 100644 --- a/pgpainless-sop/README.md +++ b/pgpainless-sop/README.md @@ -23,7 +23,7 @@ To start using pgpainless-sop in your code, include the following lines in your ... dependencies { ... - implementation "org.pgpainless:pgpainless-sop:1.3.6" + implementation "org.pgpainless:pgpainless-sop:1.3.7" ... } @@ -34,7 +34,7 @@ dependencies { org.pgpainless pgpainless-sop - 1.3.6 + 1.3.7 ... diff --git a/version.gradle b/version.gradle index f361dc8d..cd80793d 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.3.7' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.71'