PGPainless 0.2.16

This commit is contained in:
Paul Schaub 2021-10-18 16:24:22 +02:00
parent dc0b96278e
commit c6f9c723ee
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
3 changed files with 8 additions and 2 deletions

View File

@ -5,6 +5,12 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog
## 0.2.16
- Fix handling of subkey revocation signatures
- SOP: improve API use with byte arrays
- Fix `AssertionError` when determining encryption subkeys from set containing unbound key
- Add `ConsumerOptions.setMissingKeyPassphraseStrategy(strategy)` to modify behavior when missing key passphrases are encountered during decryption
## 0.2.15
- Add `ConsumerOptions.setIgnoreMDCErrors()` which can be used to consume broken messages. Not recommended!
- Add `MessageInspector.isSignedOnly()` which can be used to identify messages created via `gpg --sign --armor`

View File

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

View File

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