mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
PGPainless 0.2.7
This commit is contained in:
parent
2d76cb5c82
commit
7c88f386e7
3 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,14 @@
|
|||
# PGPainless Changelog
|
||||
|
||||
## 0.2.7
|
||||
- Fix writing data to standard out in the `java-sop-picocli` module
|
||||
- Improve handling of signatures with missing issuer-key-id packets
|
||||
- Properly ignore marker packets
|
||||
- Add issuer-fingerprint packets to message signatures by default
|
||||
- Fix ordering (bracketing) and nested-ness of one-pass-signatures
|
||||
- Fix interoperability issue with Thunderbird
|
||||
- Some keys caused wrong partial-length encodings for integrity protected session packets
|
||||
|
||||
## 0.2.6
|
||||
- Actually properly detect CRC checksum errors in ASCII armor
|
||||
|
||||
|
|
|
@ -170,7 +170,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.pgpainless:pgpainless-core:0.2.3'
|
||||
implementation 'org.pgpainless:pgpainless-core:0.2.7'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
allprojects {
|
||||
ext {
|
||||
shortVersion = '0.2.7'
|
||||
isSnapshot = true
|
||||
isSnapshot = false
|
||||
pgpainlessMinAndroidSdk = 10
|
||||
javaSourceCompatibility = 1.8
|
||||
bouncyCastleVersion = '1.69'
|
||||
|
|
Loading…
Reference in a new issue