From 09c091bfeaadda7c2859f1bdd4c8ba4b3b874657 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Fri, 11 Feb 2022 14:09:12 +0100 Subject: [PATCH] PGPainless 1.0.3 --- CHANGELOG.md | 3 +++ README.md | 2 +- version.gradle | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb711aa2..c502e989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog +## 1.0.3 +- Fix detection of unarmored data in signature verification + ## 1.0.2 - Update SOP implementation to specification revision 03 - Move `sop-java` and `sop-java-picocli` modules to [its own repository](https://github.com/pgpainless/sop-java) diff --git a/README.md b/README.md index cf732a2b..dd4f1374 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.0.2' + implementation 'org.pgpainless:pgpainless-core:1.0.3' } ``` diff --git a/version.gradle b/version.gradle index 9ae75440..73daad1d 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.0.3' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.70'