Compare commits

...

5 Commits

Author SHA1 Message Date
Paul Schaub f061b076dc
Cert-D-PGPainless 0.2.3-SNAPSHOT 2023-07-07 12:19:47 +02:00
Paul Schaub 2050450c6e
Cert-D-PGPainless 0.2.2 2023-07-07 12:17:35 +02:00
Paul Schaub 4001e4d6c7
Update changelog 2023-07-07 12:10:57 +02:00
Paul Schaub 5b44f91ffb
Bump pgpainless-core to 1.5.6 2023-07-07 12:10:18 +02:00
Paul Schaub 3f4fddfa7b
Bump cert-d-java to 0.2.2 2023-07-07 12:09:47 +02:00
3 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,11 @@ SPDX-License-Identifier: CC0-1.0
# Cert-D-PGPainless Changelog
# 0.2.1
## 0.2.2
- Bump `pgpainless-core` to `1.5.6`
- Bump `cert-d-java` to `0.2.2`
## 0.2.1
- Bump `pgpainless-core` to `1.3.12`
## 0.2.0

View File

@ -4,7 +4,6 @@
package pgp.cert_d.cli.commands;
import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPPublicKeyRing;
import org.bouncycastle.openpgp.PGPPublicKeyRingCollection;
import org.pgpainless.PGPainless;
@ -46,9 +45,6 @@ public class Import implements Runnable {
} catch (BadDataException e) {
LOGGER.error("Certificate contains bad data.", e);
System.exit(-1);
} catch (PGPException e) {
LOGGER.error("PGP Exception.", e);
System.exit(-1);
}
}
}

View File

@ -4,7 +4,7 @@
allprojects {
ext {
shortVersion = '0.2.2'
shortVersion = '0.2.3'
isSnapshot = true
minAndroidSdk = 10
javaSourceCompatibility = 1.8
@ -12,8 +12,8 @@ allprojects {
logbackVersion = '1.2.11'
junitVersion = '5.8.2'
mockitoVersion = '4.5.1'
pgpainlessVersion = '1.3.12'
pgpCertDJavaVersion = '0.2.1'
pgpainlessVersion = '1.5.6'
pgpCertDJavaVersion = '0.2.2'
picocliVersion = '4.6.3'
}
}