diff --git a/CHANGELOG.md b/CHANGELOG.md index e2e320a..787c372 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index e7e9981..4535866 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/version.gradle b/version.gradle index d7f242e..44b08ac 100644 --- a/version.gradle +++ b/version.gradle @@ -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'