diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-11-23 09:24:43 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-11-23 09:24:43 +0100 |
commit | 89bf03c4985bde93d196d28beddf73ac5d7f421d (patch) | |
tree | 19c4f1c4e837a7c8f3a044c110d3a75e6069e22e | |
parent | 04b9c31dc7800307184c1561d0a3f86bfb56e11a (diff) | |
download | openpgp-api-89bf03c4985bde93d196d28beddf73ac5d7f421d.tar.gz openpgp-api-89bf03c4985bde93d196d28beddf73ac5d7f421d.tar.bz2 openpgp-api-89bf03c4985bde93d196d28beddf73ac5d7f421d.zip |
Increase version to 10
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | openpgp-api/src/main/java/org/openintents/openpgp/util/OpenPgpApi.java | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f4efcb..93b6824 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Version history +## Version 10 + * Retrieve whole public key via ACTION_GET_KEY + ## Version 9 * AIDL Service has been changed from IOpenPgpService.aidl to IOpenPgpService2.aidl This fixes truncated data streams (thanks to 'mgeier63'). @@ -4,11 +4,8 @@ The OpenPGP API provides methods to execute OpenPGP operations, such as sign, en ### News -#### 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 - * Charset moved to OpenPgpMetadata +#### Version 10 + * Retrieve whole public key via ACTION_GET_KEY [Full changelog here…](https://github.com/open-keychain/openpgp-api/blob/master/CHANGELOG.md) @@ -26,7 +23,7 @@ repositories { } dependencies { - compile 'org.sufficientlysecure:openpgp-api:9.0' + compile 'org.sufficientlysecure:openpgp-api:10.0' } ``` 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 6905da0..ad9048d 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 = 9; + public static final int API_VERSION = 10; /** * General extras |