diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | openpgp-api/src/main/java/org/openintents/openpgp/util/OpenPgpApi.java | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 29473fe..df77bb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Version history +## Version 9 + * AIDL Service has been changed from IOpenPgpService.aidl to IOpenPgpService2.aidl + This fixes truncated data streams (thanks to 'mgeier63'). + * Fix for OpenPgpKeyPreference: Properly execute pending user interactions + ## Version 8 * OpenPgpSignatureResult: method getStatus() renamed to getResult() diff --git a/openpgp-api/src/main/java/org/openintents/openpgp/util/OpenPgpApi.java b/openpgp-api/src/main/java/org/openintents/openpgp/util/OpenPgpApi.java index feac6b9..d2d6db8 100644 --- a/openpgp-api/src/main/java/org/openintents/openpgp/util/OpenPgpApi.java +++ b/openpgp-api/src/main/java/org/openintents/openpgp/util/OpenPgpApi.java @@ -41,7 +41,7 @@ public class OpenPgpApi { /** * see CHANGELOG.md */ - public static final int API_VERSION = 8; + public static final int API_VERSION = 9; /** * General extras |