From 7c88f386e746f01ea5d3fcb89ba1f706dcdd00d0 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Wed, 4 Aug 2021 16:16:03 +0200 Subject: [PATCH] PGPainless 0.2.7 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- version.gradle | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 349e4c57..4322ff85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # PGPainless Changelog +## 0.2.7 +- Fix writing data to standard out in the `java-sop-picocli` module +- Improve handling of signatures with missing issuer-key-id packets +- Properly ignore marker packets +- Add issuer-fingerprint packets to message signatures by default +- Fix ordering (bracketing) and nested-ness of one-pass-signatures +- Fix interoperability issue with Thunderbird + - Some keys caused wrong partial-length encodings for integrity protected session packets + ## 0.2.6 - Actually properly detect CRC checksum errors in ASCII armor diff --git a/README.md b/README.md index 5c676f74..ecd51786 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:0.2.3' + implementation 'org.pgpainless:pgpainless-core:0.2.7' } ``` diff --git a/version.gradle b/version.gradle index 9e27b656..526c2c94 100644 --- a/version.gradle +++ b/version.gradle @@ -1,7 +1,7 @@ allprojects { ext { shortVersion = '0.2.7' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.69'