diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2016-03-03 13:11:54 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2016-03-03 13:11:54 +0100 |
commit | 8ca0f578bb843db7744dbd5724b32f6664b5c3db (patch) | |
tree | a87aa393306b84a96d5c845ff6e25c162dc3e771 | |
parent | 3b6681ecf669c4662d4a7cf4d276840e8bd40e7d (diff) | |
download | openpgp-api-8ca0f578bb843db7744dbd5724b32f6664b5c3db.tar.gz openpgp-api-8ca0f578bb843db7744dbd5724b32f6664b5c3db.tar.bz2 openpgp-api-8ca0f578bb843db7744dbd5724b32f6664b5c3db.zip |
Version 11
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | openpgp-api/build.gradle | 6 |
2 files changed, 7 insertions, 6 deletions
@@ -4,8 +4,9 @@ The OpenPGP API provides methods to execute OpenPGP operations, such as sign, en ### News -#### Version 10 - * Retrieve whole public key via ACTION_GET_KEY +## Version 11 + * Added a simple no-op to check if the api is available and app has permission as ACTION_CHECK_PERMISSON + * The ACTION_DETACHED_SIGN action now returns RESULT_SIGNATURE_MICALG, which contains the algorithm name used for signing (relevant for PGP/MIME) [Full changelog here…](https://github.com/open-keychain/openpgp-api/blob/master/CHANGELOG.md) @@ -23,7 +24,7 @@ repositories { } dependencies { - compile 'org.sufficientlysecure:openpgp-api:10.0' + compile 'org.sufficientlysecure:openpgp-api:11.0' } ``` diff --git a/openpgp-api/build.gradle b/openpgp-api/build.gradle index 8b8c090..4060a70 100644 --- a/openpgp-api/build.gradle +++ b/openpgp-api/build.gradle @@ -6,8 +6,8 @@ android { buildToolsVersion '21.1.2' defaultConfig { - versionCode 8 - versionName '10.0' // API-Version . minor + versionCode 9 + versionName '11.0' // API-Version . minor minSdkVersion 9 targetSdkVersion 22 } @@ -22,7 +22,7 @@ publish { userOrg = 'sufficientlysecure' groupId = 'org.sufficientlysecure' artifactId = 'openpgp-api' - version = '10.0' + version = '11.0' description = 'The OpenPGP API provides methods to execute OpenPGP operations, such as sign, encrypt, decrypt, verify, and more without user interaction from background threads.' website = 'https://github.com/open-keychain/openpgp-api' }
\ No newline at end of file |