From f47f38de4c1d5c40f830ff77a5975a3b2fb9bb11 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Fri, 11 Jun 2021 17:29:21 +0200 Subject: [PATCH] PGPainless 0.2.1 --- CHANGELOG.md | 13 +++++++++++++ version.gradle | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..b197cb0c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# PGPainless Changelog + +## 0.2.1 +- Bump Bouncycastle dependency to `1.69` + This fixes a number of issues ([#70](https://github.com/pgpainless/pgpainless/issues/70), + [#72](https://github.com/pgpainless/pgpainless/issues/72), [#84](https://github.com/pgpainless/pgpainless/issues/84)). + As a result the test suite should now run more smoothly \o/ +- Remove Android SDK build dependency + We can now build PGPainless without the need to have the Android SDK installed +- `SignatureUtils`: Add `getSignatureDigestPrefix()` method +- Add `KeyIdUtil` which allows converting 16 digit hex fingerprints to key-ids +- `SignatureSubpacketsUtil`: Add methods to get notations by name +- Add public key algorithm policy to reject signatures made by weak signing keys diff --git a/version.gradle b/version.gradle index 729bcf85..b9e5d8f3 100644 --- a/version.gradle +++ b/version.gradle @@ -1,7 +1,7 @@ allprojects { ext { shortVersion = '0.2.1' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.69'