From 95aed9bf2222d89503887a3d321d1b0993ba87d4 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Mon, 7 Mar 2022 15:02:24 +0100 Subject: [PATCH] PGPainless 1.1.2 --- CHANGELOG.md | 2 +- README.md | 2 +- version.gradle | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f23ab77..2f39e50c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog -## 1.1.2-SNAPSHOT +## 1.1.2 - Fix `keyRingInfo.getEmailAddresses()` incorrectly matching some mail addresses (thanks @bratkartoffel for reporting and initial patch proposal) - Fix generic type of `CertificationSubpackets.Callback` - Add `KeyRingInfo.isUsableForEncryption()` diff --git a/README.md b/README.md index 4dc5d2f2..29454fd0 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.1.1' + implementation 'org.pgpainless:pgpainless-core:1.1.2' } ``` diff --git a/version.gradle b/version.gradle index 03d66410..3bf96de1 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.1.2' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.70'