PGPainless 1.6.0

This commit is contained in:
Paul Schaub 2023-07-12 16:23:42 +02:00
parent e4589bf147
commit d6dfcbf4b5
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
4 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@ SPDX-License-Identifier: CC0-1.0
# PGPainless Changelog
## 1.6.0-SNAPSHOT
## 1.6.0
- Bump `sop-java` to `7.0.0`, implementing [SOP Spec Revision 07](https://www.ietf.org/archive/id/draft-dkg-openpgp-stateless-cli-07.html)
- Implement `revoke-key` subcommand and API
- Implement `change-key-password` subcommand and API

View File

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

View File

@ -6,7 +6,7 @@ SPDX-License-Identifier: Apache-2.0
# PGPainless-SOP
[![Spec Revision: 6](https://img.shields.io/badge/Spec%20Revision-6-blue)](https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/)
[![Spec Revision: 7](https://img.shields.io/badge/Spec%20Revision-7-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.5.6"
implementation "org.pgpainless:pgpainless-sop:1.6.0"
...
}
@ -34,7 +34,7 @@ dependencies {
<dependency>
<groupId>org.pgpainless</groupId>
<artifactId>pgpainless-sop</artifactId>
<version>1.5.6</version>
<version>1.6.0</version>
</dependency>
...
</dependencies>

View File

@ -4,8 +4,8 @@
allprojects {
ext {
shortVersion = '1.5.7'
isSnapshot = true
shortVersion = '1.6.0'
isSnapshot = false
pgpainlessMinAndroidSdk = 10
javaSourceCompatibility = 1.8
bouncyCastleVersion = '1.75'