Skip to content

Commit

Permalink
Version 11
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Schürmann committed Mar 3, 2016
1 parent 3b6681e commit 8ca0f57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -23,7 +24,7 @@ repositories {
}
dependencies {
compile 'org.sufficientlysecure:openpgp-api:10.0'
compile 'org.sufficientlysecure:openpgp-api:11.0'
}
```

Expand Down
6 changes: 3 additions & 3 deletions openpgp-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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'
}

0 comments on commit 8ca0f57

Please sign in to comment.