blob: 707c2af5c39e4fe4d951f6534dfa19cc1705fff3 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Changelog
### [Unreleased]
- The library now requires Kotlin 1.5.0 configured with `kotlinOptions.languageVersion = "1.5"`.
- The synchronous and callback based APIs in `OpenPgpApi` have been removed in favor of a singular coroutines-based entrypoint.
- Accept emails without a TLD
### [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
|