Update changelog and readme

This commit is contained in:
Paul Schaub 2021-11-28 15:06:10 +01:00
parent 635de19fb8
commit 18e135823f
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 9 additions and 1 deletions

View File

@ -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)`

View File

@ -173,7 +173,7 @@ repositories {
}
dependencies {
implementation 'org.pgpainless:pgpainless-core:1.0.0-rc5'
implementation 'org.pgpainless:pgpainless-core:1.0.0-rc6'
}
```