diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-04-10 14:37:42 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-04-10 14:37:42 +0530 |
commit | b7d43f1c9680ab558a0f461f15649d8d60792a03 (patch) | |
tree | 005ffa54a73be2a59c7d77650c9a298334a8ea19 /openpgp-ktx | |
parent | e6744fa5a9e047d056765557c4aafc120393db26 (diff) |
openpgp-ktx: bump version to v3.0.0openpgp-ktx-v3.0.0
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'openpgp-ktx')
-rw-r--r-- | openpgp-ktx/CHANGELOG.md | 45 | ||||
-rw-r--r-- | openpgp-ktx/gradle.properties | 2 |
2 files changed, 46 insertions, 1 deletions
diff --git a/openpgp-ktx/CHANGELOG.md b/openpgp-ktx/CHANGELOG.md new file mode 100644 index 00000000..3ba948d8 --- /dev/null +++ b/openpgp-ktx/CHANGELOG.md @@ -0,0 +1,45 @@ +# Changelog + +### [Unreleased] + +### [3.0.0] - 2021-04-10 +- Relicence under Apache 2.0 + +### [2.2.0] - 2020-11-04 +- Update dependencies +- Enable tracking of public API changes + +### [2.1.0] - 2020-08-16 +- Target Android 11 +- Update to Kotlin 1.4 +- Update library dependencies + +### [2.0.0] - 2020-04-29 +- **BREAKING**: Remove `IOpenPgpCallback` and replace it with a lambda reference. + +### [1.2.0] - 2020-01-25 +- Fix unmarshalling of `OpenPgpError` + +### [1.1.0] - 2019-12-26 +- Update library dependencies +- Embed proguard rules in library + +### [1.0.0] - 2019-11-29 +- Update library dependencies +- Make logtags unique across classes to aid debugging +- **BREAKING**: Make parameters in OnBound interface non-null +- **BREAKING**: `OpenPgpApi#executeApiAsync` is now a `suspend` function and only works with a [coroutines](https://github.com/kotlin/kotlinx.coroutines) caller +- Don't generate `BuildConfig` in the library + +### [0.1.0] - 2019-11-08 +- Initial release + +[Unreleased]: https://github.com/android-password-store/Android-Password-Store/commits/develop/openpgp-ktx +[3.0.0]: https://github.com/android-password-store/Android-Password-Store/releases/openpgp-ktx-v3.0.0 +[2.2.0]: https://github.com/android-password-store/openpgp-ktx/releases/2.2.0 +[2.1.0]: https://github.com/android-password-store/openpgp-ktx/releases/2.1.0 +[2.0.0]: https://github.com/android-password-store/openpgp-ktx/releases/2.0.0 +[1.2.0]: https://github.com/android-password-store/openpgp-ktx/releases/1.2.0 +[1.1.0]: https://github.com/android-password-store/openpgp-ktx/releases/1.1.0 +[1.0.0]: https://github.com/android-password-store/openpgp-ktx/releases/1.0.0 +[0.1.0]: https://github.com/android-password-store/openpgp-ktx/releases/0.1.0 diff --git a/openpgp-ktx/gradle.properties b/openpgp-ktx/gradle.properties index a5bab53f..b19a52c9 100644 --- a/openpgp-ktx/gradle.properties +++ b/openpgp-ktx/gradle.properties @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -VERSION_NAME=2.2.0 +VERSION_NAME=3.0.0 POM_ARTIFACT_ID=openpgp-ktx POM_NAME=openpgp-ktx POM_DESCRIPTION=Reimplementation of OpenKeychain's integration library in Kotlin |