PGPainless 0.2.7

This commit is contained in:
Paul Schaub 2021-08-04 16:16:03 +02:00
parent 2d76cb5c82
commit 7c88f386e7
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
3 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,14 @@
# PGPainless Changelog # PGPainless Changelog
## 0.2.7
- Fix writing data to standard out in the `java-sop-picocli` module
- Improve handling of signatures with missing issuer-key-id packets
- Properly ignore marker packets
- Add issuer-fingerprint packets to message signatures by default
- Fix ordering (bracketing) and nested-ness of one-pass-signatures
- Fix interoperability issue with Thunderbird
- Some keys caused wrong partial-length encodings for integrity protected session packets
## 0.2.6 ## 0.2.6
- Actually properly detect CRC checksum errors in ASCII armor - Actually properly detect CRC checksum errors in ASCII armor

View File

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

View File

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