Skip to content

Commit

Permalink
update version for 1.1.17 release
Browse files Browse the repository at this point in the history
  • Loading branch information
weijjia committed Apr 19, 2016
1 parent d29f3a3 commit 05fd8df
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Work Account is an identity you use to get work done no matter if at your busi
## ADAL for Android 1.0 Released!

Thanks to all your great feedback over the preview period, we have released 1.0 (GA) of the Microsoft Azure Active Directory Library for Android!
Recent version is 1.1.16
Recent version is 1.1.17

## Features
* Industry standard Oauth2 protocol support.
Expand Down
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 1.1.17
--------------
Fix for checking retrieved private key before unwrapping symmetric key, avoid the crash for InvalidArgumentException when key data is wiped by keystore but not alias
Update the cache lookup logic for multi-resource refresh token
Update token cache removal logic to only remove stored token when receiving invalid_grant as oauth2 error
Disable Family of Client Id feature
Update readme for secret key generation and update sample for token acquisition flow with broker
Add the function to turn-off hardware acceleration in AuthenticationActivity webview
Add the function to resume broker request after clicking on "Get the app" page and install the broker app
Update BrokerProxy to recognize company portal for adding account during conditional access flow

Version 1.1.16
--------------
Hot fix for catching RuntimeException thrown due to AndroidKeyStore bug, so App won't crash due to keystore got reset
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<properties>
<scm.branch>master</scm.branch>
<maven.version>3.1.1</maven.version>
<adal.version>1.1.16</adal.version>
<adal.version>1.1.17</adal.version>
<android.platform.maven.plugin>21</android.platform.maven.plugin>
<android.version>[4.1.1.4,)</android.version>
<android.support.version>[21,)</android.support.version>
Expand Down
4 changes: 2 additions & 2 deletions src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.aad</groupId>
<artifactId>adal</artifactId>
<version>1.1.16</version>
<version>1.1.17</version>
<packaging>aar</packaging>
<name>adal</name>
<properties>
<scm.branch>master</scm.branch>
<maven.version>3.1.1</maven.version>
<adal.version>1.1.16</adal.version>
<adal.version>1.1.17</adal.version>
<android.platform.maven.plugin>21</android.platform.maven.plugin>
<android.version>[4.1.1.4,)</android.version>
<android.support.version>[21,)</android.support.version>
Expand Down
2 changes: 1 addition & 1 deletion src/src/com/microsoft/aad/adal/AuthenticationContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -2222,7 +2222,7 @@ public static String getVersionName() {
// Package manager does not report for ADAL
// AndroidManifest files are not merged, so it is returning hard coded
// value
return "1.1.16";
return "1.1.17";
}

/**
Expand Down

0 comments on commit 05fd8df

Please sign in to comment.