PGPainless 0.2.10

This commit is contained in:
Paul Schaub 2021-09-07 14:11:02 +02:00
parent 3994f87c78
commit e8988cdb5f
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# PGPainless Changelog
## 0.2.10
- Cleartext Signature Framework
- Reuse `ConsumerOptions` class for verification
- Return `OpenPgpMetadata` object as result of verification
- Change default compression algorithm from `UNCOMPRESSED` to `ZIP`
- Cleanup: Move Signature Verification code to dedicated internal stream
## 0.2.9
- Allow customization of ASCII armor comment and version headers
- Small bug fixes of SOP implementation

View File

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

View File

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