diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6cdda9..a91a90c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog -## 1.1.1-SNAPSHOT +## 1.1.1 - Add `producerOptions.setComment(string)` to allow adding ASCII armor comments when creating OpenPGP messages (thanks @ferenc-hechler) - Simplify consumption of cleartext-signed data - Change default criticality of signature subpackets diff --git a/README.md b/README.md index 872d1549..4dc5d2f2 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.1.0' + implementation 'org.pgpainless:pgpainless-core:1.1.1' } ``` diff --git a/pgpainless-sop/README.md b/pgpainless-sop/README.md index c20b58c4..f7f3856d 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.0.2" + implementation "org.pgpainless:pgpainless-sop:1.1.1" ... } diff --git a/version.gradle b/version.gradle index e88ae14d..0e0f97a3 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.1.1' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.70'