diff --git a/CHANGELOG.md b/CHANGELOG.md index 41838790..8134c0cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0 # PGPainless Changelog -## 1.1.5-SNAPSHOT +## 1.1.5 - SOP encrypt: match signature type when using `encrypt --as=` option - `ProducerOptions.setEncoding()`: The encoding is henceforth only considered metadata and will no longer trigger CRLF encoding. - This fixes broken signature generation for mismatching (`StreamEncoding`,`DocumentSignatureType`) tuples. diff --git a/README.md b/README.md index 514dbd84..58e59401 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ repositories { } dependencies { - implementation 'org.pgpainless:pgpainless-core:1.1.4' + implementation 'org.pgpainless:pgpainless-core:1.1.5' } ``` diff --git a/pgpainless-core/src/main/java/org/pgpainless/util/selection/userid/SelectUserId.java b/pgpainless-core/src/main/java/org/pgpainless/util/selection/userid/SelectUserId.java index 65ac568b..5c1611af 100644 --- a/pgpainless-core/src/main/java/org/pgpainless/util/selection/userid/SelectUserId.java +++ b/pgpainless-core/src/main/java/org/pgpainless/util/selection/userid/SelectUserId.java @@ -134,7 +134,7 @@ public abstract class SelectUserId { * Note: This only accepts user-ids which properly have the email address surrounded by angle brackets. * * The argument
email
can both be a plain email address (
"foo@bar.baz"
), - * or surrounded by angle brackets (
""
, the result of the filter will be the same. + * or surrounded by angle brackets ({@code
""
}), the result of the filter will be the same. * * @param email email address * @return filter diff --git a/pgpainless-sop/README.md b/pgpainless-sop/README.md index 9ec6c8cd..bb4af342 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.4" + implementation "org.pgpainless:pgpainless-sop:1.1.5" ... } @@ -34,7 +34,7 @@ dependencies { org.pgpainless pgpainless-sop - 1.1.4 + 1.1.5 ... diff --git a/version.gradle b/version.gradle index 3b94fb87..384e25a3 100644 --- a/version.gradle +++ b/version.gradle @@ -5,7 +5,7 @@ allprojects { ext { shortVersion = '1.1.5' - isSnapshot = true + isSnapshot = false pgpainlessMinAndroidSdk = 10 javaSourceCompatibility = 1.8 bouncyCastleVersion = '1.70'