mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 12:22:06 +01:00
PGPainless 0.2.18
This commit is contained in:
parent
5c3fa28946
commit
40926b69f8
3 changed files with 13 additions and 2 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -5,6 +5,17 @@ SPDX-License-Identifier: CC0-1.0
|
|||
|
||||
# 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
|
||||
- Fix handling of subkey revocation signatures
|
||||
- SOP: improve API use with byte arrays
|
||||
|
|
|
@ -170,7 +170,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.pgpainless:pgpainless-core:0.2.16'
|
||||
implementation 'org.pgpainless:pgpainless-core:0.2.18'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
allprojects {
|
||||
ext {
|
||||
shortVersion = '0.2.18'
|
||||
isSnapshot = true
|
||||
isSnapshot = false
|
||||
pgpainlessMinAndroidSdk = 10
|
||||
javaSourceCompatibility = 1.8
|
||||
bouncyCastleVersion = '1.69'
|
||||
|
|
Loading…
Reference in a new issue