PGPainless 1.1.1

This commit is contained in:
Paul Schaub 2022-02-25 16:06:01 +01:00
parent a681a27bb7
commit 69c0a1bfa4
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog
## 1.1.1-SNAPSHOT
## 1.1.1
- Add `producerOptions.setComment(string)` to allow adding ASCII armor comments when creating OpenPGP messages (thanks @ferenc-hechler)
- Simplify consumption of cleartext-signed data
- Change default criticality of signature subpackets

View File

@ -186,7 +186,7 @@ repositories {
}
dependencies {
implementation 'org.pgpainless:pgpainless-core:1.1.0'
implementation 'org.pgpainless:pgpainless-core:1.1.1'
}
```

View File

@ -23,7 +23,7 @@ To start using pgpainless-sop in your code, include the following lines in your
...
dependencies {
...
implementation "org.pgpainless:pgpainless-sop:1.0.2"
implementation "org.pgpainless:pgpainless-sop:1.1.1"
...
}

View File

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