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 # PGPainless Changelog
## 1.1.4-SNAPSHOT ## 1.1.4
- Add utility method `KeyRingUtils.removeSecretKey()` to remove secret key part from key ring - Add utility method `KeyRingUtils.removeSecretKey()` to remove secret key part from key ring
- This can come in handy when using primary keys stored offline - This can come in handy when using primary keys stored offline
- Add `EncryptionResult.isEncryptedFor(certificate)` - Add `EncryptionResult.isEncryptedFor(certificate)`

View File

@ -188,7 +188,7 @@ repositories {
} }
dependencies { 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. * `development` contains new features that will make it into the next MINOR release.
#### Example: #### Example:
Latest release: 1.1.3 Latest release: 1.1.4
* `release/1.0` contains the state of `1.0.5-SNAPSHOT` * `release/1.0` contains the state of `1.0.5-SNAPSHOT`
* `release/1.1` contains the state of `1.1.4-SNAPSHOT` * `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.4`. * `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`. * `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. 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 { dependencies {
... ...
implementation "org.pgpainless:pgpainless-sop:1.1.3" implementation "org.pgpainless:pgpainless-sop:1.1.4"
... ...
} }
@ -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.3</version> <version>1.1.4</version>
</dependency> </dependency>
... ...
</dependencies> </dependencies>

View File

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