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
## 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.

View File

@ -188,7 +188,7 @@ repositories {
}
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.
*
* 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
* @return filter

View File

@ -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 {
<dependency>
<groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId>
<version>1.1.4</version>
<version>1.1.5</version>
</dependency>
...
</dependencies>

View File

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