mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 12:22:06 +01:00
PGPainless 1.1.5
This commit is contained in:
parent
3245dff731
commit
a7d56e3461
5 changed files with 6 additions and 6 deletions
|
@ -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.
|
||||
|
|
|
@ -188,7 +188,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.pgpainless:pgpainless-core:1.1.4'
|
||||
implementation 'org.pgpainless:pgpainless-core:1.1.5'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
allprojects {
|
||||
ext {
|
||||
shortVersion = '1.1.5'
|
||||
isSnapshot = true
|
||||
isSnapshot = false
|
||||
pgpainlessMinAndroidSdk = 10
|
||||
javaSourceCompatibility = 1.8
|
||||
bouncyCastleVersion = '1.70'
|
||||
|
|
Loading…
Reference in a new issue