PGPainless 1.1.4

This commit is contained in:
Paul Schaub 2022-03-30 12:26:50 +02:00
parent b0eb32d550
commit ccee24dd93
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog
## 1.1.4-SNAPSHOT
## 1.1.4
- Add utility method `KeyRingUtils.removeSecretKey()` to remove secret key part from key ring
- This can come in handy when using primary keys stored offline
- Add `EncryptionResult.isEncryptedFor(certificate)`

View File

@ -188,7 +188,7 @@ repositories {
}
dependencies {
implementation 'org.pgpainless:pgpainless-core:1.1.3'
implementation 'org.pgpainless:pgpainless-core:1.1.4'
}
```
@ -221,10 +221,10 @@ which contains the bug you are fixing. That way we can update older revisions of
* `development` contains new features that will make it into the next MINOR release.
#### Example:
Latest release: 1.1.3
Latest release: 1.1.4
* `release/1.0` contains the state of `1.0.5-SNAPSHOT`
* `release/1.1` contains the state of `1.1.4-SNAPSHOT`
* `master` contains the state `release/1.1` plus patch level changes that will make it into `1.1.4`.
* `release/1.1` contains the state of `1.1.5-SNAPSHOT`
* `master` contains the state `release/1.1` plus patch level changes that will make it into `1.1.5`.
* `development` contains the state which will at some point become `1.2.0`.
Please follow the [code of conduct](CODE_OF_CONDUCT.md) if you want to be part of the project.

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.3"
implementation "org.pgpainless:pgpainless-sop:1.1.4"
...
}
@ -34,7 +34,7 @@ dependencies {
<dependency>
<groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId>
<version>1.1.3</version>
<version>1.1.4</version>
</dependency>
...
</dependencies>

View File

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