From 18e135823f1eaaced3d8acda3157e9affa51aa2f Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Sun, 28 Nov 2021 15:06:10 +0100 Subject: [PATCH] Update changelog and readme --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9410ec3..42e62032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog +## 1.0.0-rc6 +- Restructure method arguments in `SecretKeyRingEditor` +- Add explanations of revocation reasons to `RevocationAttributes` +- Rename `CertificationSignatureBuilder` to `ThirdPartyCertificationSignatureBuilder` +- `KeyAccessor.ViaKeyId`: Differentiate between primary key (rely on direct-key sig) and subkey (subkey binding sig) +- Expose `SignatureSubpacketsUtil.getKeyLifetimeInSeconds` +- Various cleanup steps and new tests + ## 1.0.0-rc5 - Fix invalid cursor mark in `BufferedInputStream` when processing large cleartext signed messages - Add `SecretKeyRingEditor.revokeUserIds(SelectUserId, SecretKeyRingProtector, RevocationSignatureSubpackets.Callback)` diff --git a/README.md b/README.md index e951d935..e4732090 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.0.0-rc5' + implementation 'org.pgpainless:pgpainless-core:1.0.0-rc6' } ```