PGPainless 0.2.18

This commit is contained in:
Paul Schaub 2021-10-27 13:34:33 +02:00
parent 5c3fa28946
commit 40926b69f8
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
3 changed files with 13 additions and 2 deletions

View File

@ -5,6 +5,17 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog # PGPainless Changelog
## 0.2.18
- Fix compatibility with PGPainless < 0.2.10
- Fix interoperability with Kleopatra
- Decryption: Do not skip over first PKESKs when we have a matching decryption key
- MessageInspector: Break from object factory loop after encountering encrypted data (we cannot go deeper)
- Move hash algorithm negotiation to own class
- Change return value of `EncryptionOptions.overrideEncryptionAlgorithm()`
## 0.2.17
- Fix prematurely throwing `MissingPassphraseException` when decrypting message with multiple possible keys and passphrases
## 0.2.16 ## 0.2.16
- Fix handling of subkey revocation signatures - Fix handling of subkey revocation signatures
- SOP: improve API use with byte arrays - SOP: improve API use with byte arrays

View File

@ -170,7 +170,7 @@ repositories {
} }
dependencies { dependencies {
implementation 'org.pgpainless:pgpainless-core:0.2.16' implementation 'org.pgpainless:pgpainless-core:0.2.18'
} }
``` ```

View File

@ -5,7 +5,7 @@
allprojects { allprojects {
ext { ext {
shortVersion = '0.2.18' shortVersion = '0.2.18'
isSnapshot = true isSnapshot = false
pgpainlessMinAndroidSdk = 10 pgpainlessMinAndroidSdk = 10
javaSourceCompatibility = 1.8 javaSourceCompatibility = 1.8
bouncyCastleVersion = '1.69' bouncyCastleVersion = '1.69'