mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2024-11-14 03:52:05 +01:00
Cert-D-PGPainless 0.2.0
This commit is contained in:
parent
47e9f5f08a
commit
5b0f22f515
3 changed files with 15 additions and 4 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -5,9 +5,19 @@ SPDX-License-Identifier: CC0-1.0
|
|||
|
||||
# Cert-D-PGPainless Changelog
|
||||
|
||||
## 0.1.3-SNAPSHOT
|
||||
## 0.2.0
|
||||
- `get`: Apply `toLowerCase()` to fingerprints
|
||||
- Use BCs `PGPPublicKeyRing.join(first, second)` method to properly merge certificates
|
||||
- Implement storing of `trust-root` key
|
||||
- Bump `cert-d-java` to `0.2.1`
|
||||
- Changes to CLI
|
||||
- Add support for i18n using resource bundles
|
||||
- Rename `import` command to `insert`
|
||||
- Rename `multi-import` command to `import`
|
||||
- Add `export` command
|
||||
- Add basic `list` command
|
||||
- `get` command: Allow querying by special name
|
||||
- Add armor headers to output of `get` command
|
||||
|
||||
## 0.1.2
|
||||
- Add name and description to main command
|
||||
|
|
|
@ -9,7 +9,8 @@ SPDX-License-Identifier: Apache-2.0
|
|||
[![Coverage Status](https://coveralls.io/repos/github/pgpainless/cert-d-pgpainless/badge.svg?branch=main)](https://coveralls.io/github/pgpainless/cert-d-pgpainless?branch=main)
|
||||
[![REUSE status](https://api.reuse.software/badge/github.com/pgpainless/cert-d-pgpainless)](https://api.reuse.software/info/github.com/pgpainless/cert-d-pgpainless)
|
||||
|
||||
This repository contains implementations of the [Shared PGP Certificate Directory](https://sequoia-pgp.gitlab.io/pgp-cert-d/) specification using [PGPainless](https://pgpainless.org) as backend.
|
||||
This repository contains implementations of the [Shared PGP Certificate Directory](https://sequoia-pgp.gitlab.io/pgp-cert-d/)
|
||||
specification using [PGPainless](https://pgpainless.org) as backend.
|
||||
|
||||
The module `pgpainless-cert-d` can be used as a drop-in implementation of
|
||||
`pgp-certificate-store`.
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
allprojects {
|
||||
ext {
|
||||
shortVersion = '0.1.3'
|
||||
isSnapshot = true
|
||||
shortVersion = '0.2.0'
|
||||
isSnapshot = false
|
||||
minAndroidSdk = 10
|
||||
javaSourceCompatibility = 1.8
|
||||
slf4jVersion = '1.7.36'
|
||||
|
|
Loading…
Reference in a new issue