PGPainless 1.3.11

This commit is contained in:
Paul Schaub 2022-11-09 22:12:23 +01:00
parent 52c0ec1208
commit c35deaed16
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog
## 1.3.11-SNAPSHOT
## 1.3.11
- Fix: When verifying subkey binding signatures with embedded recycled primary
key binding signatures, do not reject signature if primary key binding
predates subkey binding

View File

@ -191,7 +191,7 @@ repositories {
}
dependencies {
implementation 'org.pgpainless:pgpainless-core:1.3.10'
implementation 'org.pgpainless:pgpainless-core:1.3.11'
}
```

View File

@ -6,7 +6,7 @@ SPDX-License-Identifier: Apache-2.0
# PGPainless-SOP
[![Spec Revision: 3](https://img.shields.io/badge/Spec%20Revision-3-blue)](https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/)
[![Spec Revision: 4](https://img.shields.io/badge/Spec%20Revision-4-blue)](https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/)
[![Maven Central](https://badgen.net/maven/v/maven-central/org.pgpainless/pgpainless-sop)](https://search.maven.org/artifact/org.pgpainless/pgpainless-sop)
[![javadoc](https://javadoc.io/badge2/org.pgpainless/pgpainless-sop/javadoc.svg)](https://javadoc.io/doc/org.pgpainless/pgpainless-sop)
@ -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.3.10"
implementation "org.pgpainless:pgpainless-sop:1.3.11"
...
}
@ -34,7 +34,7 @@ dependencies {
<dependency>
<groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId>
<version>1.3.10</version>
<version>1.3.11</version>
</dependency>
...
</dependencies>

View File

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