mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
PGPainless 0.2.10
This commit is contained in:
parent
3994f87c78
commit
e8988cdb5f
3 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -170,7 +170,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.pgpainless:pgpainless-core:0.2.9'
|
||||
implementation 'org.pgpainless:pgpainless-core:0.2.10'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
allprojects {
|
||||
ext {
|
||||
shortVersion = '0.2.10'
|
||||
isSnapshot = true
|
||||
isSnapshot = false
|
||||
pgpainlessMinAndroidSdk = 10
|
||||
javaSourceCompatibility = 1.8
|
||||
bouncyCastleVersion = '1.69'
|
||||
|
|
Loading…
Reference in a new issue