PGPainless 1.1.5

This commit is contained in:
Paul Schaub 2022-04-05 14:48:44 +02:00
parent 3245dff731
commit a7d56e3461
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
5 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog # PGPainless Changelog
## 1.1.5-SNAPSHOT ## 1.1.5
- SOP encrypt: match signature type when using `encrypt --as=` option - 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. - `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. - This fixes broken signature generation for mismatching (`StreamEncoding`,`DocumentSignatureType`) tuples.

View File

@ -188,7 +188,7 @@ repositories {
} }
dependencies { dependencies {
implementation 'org.pgpainless:pgpainless-core:1.1.4' implementation 'org.pgpainless:pgpainless-core:1.1.5'
} }
``` ```

View File

@ -134,7 +134,7 @@ public abstract class SelectUserId {
* Note: This only accepts user-ids which properly have the email address surrounded by angle brackets. * Note: This only accepts user-ids which properly have the email address surrounded by angle brackets.
* *
* The argument <pre>email</pre> can both be a plain email address (<pre>"foo@bar.baz"</pre>), * The argument <pre>email</pre> can both be a plain email address (<pre>"foo@bar.baz"</pre>),
* or surrounded by angle brackets (<pre>"<foo@bar.baz>"</pre>, the result of the filter will be the same. * or surrounded by angle brackets ({@code <pre>"<foo@bar.baz>"</pre>}), the result of the filter will be the same.
* *
* @param email email address * @param email email address
* @return filter * @return filter

View File

@ -23,7 +23,7 @@ To start using pgpainless-sop in your code, include the following lines in your
... ...
dependencies { dependencies {
... ...
implementation "org.pgpainless:pgpainless-sop:1.1.4" implementation "org.pgpainless:pgpainless-sop:1.1.5"
... ...
} }
@ -34,7 +34,7 @@ dependencies {
<dependency> <dependency>
<groupId>org.pgpainless</groupId> <groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId> <artifactId>pgpainless-sop</artifactId>
<version>1.1.4</version> <version>1.1.5</version>
</dependency> </dependency>
... ...
</dependencies> </dependencies>

View File

@ -5,7 +5,7 @@
allprojects { allprojects {
ext { ext {
shortVersion = '1.1.5' shortVersion = '1.1.5'
isSnapshot = true isSnapshot = false
pgpainlessMinAndroidSdk = 10 pgpainlessMinAndroidSdk = 10
javaSourceCompatibility = 1.8 javaSourceCompatibility = 1.8
bouncyCastleVersion = '1.70' bouncyCastleVersion = '1.70'