PGPainless 1.1.3

This commit is contained in:
Paul Schaub 2022-03-15 15:41:30 +01:00
parent bfe140294c
commit 655f4ae09a
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 5 additions and 4 deletions

View File

@ -10,6 +10,7 @@ SPDX-License-Identifier: CC0-1.0
- Fix crash when trying to do verification of unmatched `SignersUserId` signature subpacket - Fix crash when trying to do verification of unmatched `SignersUserId` signature subpacket
- For now, verification of `SignersUserId` is disabled but can be enabled via `Policy.setSignerUserIdValidationLevel()` - For now, verification of `SignersUserId` is disabled but can be enabled via `Policy.setSignerUserIdValidationLevel()`
- Initial support for `OpenPgpV5Fingerprint` - Initial support for `OpenPgpV5Fingerprint`
- Add `OpenPgpFingerprint.parse(string)`
- Security: Fix `KeyRingInfo.getValidAndExpiredUserIds()` accidentally including unbound user-ids - Security: Fix `KeyRingInfo.getValidAndExpiredUserIds()` accidentally including unbound user-ids
## 1.0.5 ## 1.0.5

View File

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

View File

@ -23,7 +23,7 @@ To start using pgpainless-sop in your code, include the following lines in your
... ...
dependencies { dependencies {
... ...
implementation "org.pgpainless:pgpainless-sop:1.1.1" implementation "org.pgpainless:pgpainless-sop:1.1.3"
... ...
} }
@ -34,7 +34,7 @@ dependencies {
<dependency> <dependency>
<groupId>org.pgpainless</groupId> <groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId> <artifactId>pgpainless-sop</artifactId>
<version>1.1.1</version> <version>1.1.3</version>
</dependency> </dependency>
... ...
</dependencies> </dependencies>

View File

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