From 96f6128dd3c1b21c6ca110367dc33c7420d4bb36 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Wed, 24 Nov 2021 15:17:49 +0100 Subject: [PATCH] PGPainless 1.0.0-rc5 --- CHANGELOG.md | 4 ++++ README.md | 2 +- version.gradle | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fb89d9f..a9410ec3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog +## 1.0.0-rc5 +- Fix invalid cursor mark in `BufferedInputStream` when processing large cleartext signed messages +- Add `SecretKeyRingEditor.revokeUserIds(SelectUserId, SecretKeyRingProtector, RevocationSignatureSubpackets.Callback)` + ## 1.0.0-rc4 - Fix bug where `KeyRingBuilder` would mark additional user-ids as primary diff --git a/README.md b/README.md index 609595e5..e951d935 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.0.0-rc4' + implementation 'org.pgpainless:pgpainless-core:1.0.0-rc5' } ``` diff --git a/version.gradle b/version.gradle index bb4c88ea..14c520a1 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.0.0-rc5' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.69'