Compare commits

..

No commits in common. "main" and "0.2.1" have entirely different histories.
main ... 0.2.1

3 changed files with 9 additions and 9 deletions

View file

@ -5,11 +5,7 @@ SPDX-License-Identifier: CC0-1.0
# Cert-D-PGPainless Changelog # Cert-D-PGPainless Changelog
## 0.2.2 # 0.2.1
- 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` - Bump `pgpainless-core` to `1.3.12`
## 0.2.0 ## 0.2.0

View file

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

View file

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