From ccee24dd9370193caf517aca24a42f656979d298 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Wed, 30 Mar 2022 12:26:50 +0200 Subject: [PATCH] PGPainless 1.1.4 --- CHANGELOG.md | 2 +- README.md | 8 ++++---- pgpainless-sop/README.md | 4 ++-- version.gradle | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48dafad2..b17b071e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog -## 1.1.4-SNAPSHOT +## 1.1.4 - Add utility method `KeyRingUtils.removeSecretKey()` to remove secret key part from key ring - This can come in handy when using primary keys stored offline - Add `EncryptionResult.isEncryptedFor(certificate)` diff --git a/README.md b/README.md index b4cc1089..514dbd84 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.1.3' + implementation 'org.pgpainless:pgpainless-core:1.1.4' } ``` @@ -221,10 +221,10 @@ which contains the bug you are fixing. That way we can update older revisions of * `development` contains new features that will make it into the next MINOR release. #### Example: -Latest release: 1.1.3 +Latest release: 1.1.4 * `release/1.0` contains the state of `1.0.5-SNAPSHOT` -* `release/1.1` contains the state of `1.1.4-SNAPSHOT` -* `master` contains the state `release/1.1` plus patch level changes that will make it into `1.1.4`. +* `release/1.1` contains the state of `1.1.5-SNAPSHOT` +* `master` contains the state `release/1.1` plus patch level changes that will make it into `1.1.5`. * `development` contains the state which will at some point become `1.2.0`. Please follow the [code of conduct](CODE_OF_CONDUCT.md) if you want to be part of the project. diff --git a/pgpainless-sop/README.md b/pgpainless-sop/README.md index af3c5e52..9ec6c8cd 100644 --- a/pgpainless-sop/README.md +++ b/pgpainless-sop/README.md @@ -23,7 +23,7 @@ To start using pgpainless-sop in your code, include the following lines in your ... dependencies { ... - implementation "org.pgpainless:pgpainless-sop:1.1.3" + implementation "org.pgpainless:pgpainless-sop:1.1.4" ... } @@ -34,7 +34,7 @@ dependencies { org.pgpainless pgpainless-sop - 1.1.3 + 1.1.4 ... diff --git a/version.gradle b/version.gradle index 57acae3f..99bdb588 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.1.4' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.70'