PGPainless 1.3.7

This commit is contained in:
Paul Schaub 2022-10-05 12:27:38 +02:00
parent 2c76f66987
commit 19ee2ebacf
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 6 additions and 6 deletions

View File

@ -5,9 +5,9 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog
## 1.3.7-SNAPSHOT
- Add `KeyRingUtils.injectCertification(keys, certification)`
## 1.3.7
- Bugfix: Fix signature verification when `DecryptionStream` is drained byte-by-byte using `read()` call
- Add `KeyRingUtils.injectCertification(keys, certification)`
- Add `PGPainless.asciiArmor(key, outputStream)`
- Add `PGPainless.asciiArmor(signature)`

View File

@ -191,7 +191,7 @@ repositories {
}
dependencies {
implementation 'org.pgpainless:pgpainless-core:1.3.6'
implementation 'org.pgpainless:pgpainless-core:1.3.7'
}
```

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.3.6"
implementation "org.pgpainless:pgpainless-sop:1.3.7"
...
}
@ -34,7 +34,7 @@ dependencies {
<dependency>
<groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId>
<version>1.3.6</version>
<version>1.3.7</version>
</dependency>
...
</dependencies>

View File

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