From 6f7bd75232a4947890d639686f7ce9aa7c3a062b Mon Sep 17 00:00:00 2001 From: Ryan Pangrle Date: Mon, 18 Jul 2016 13:58:50 -0700 Subject: [PATCH] Update version and changelog --- ADAL/src/ADAL_Internal.h | 6 +++--- changelog.txt | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ADAL/src/ADAL_Internal.h b/ADAL/src/ADAL_Internal.h index 10d1d8f96..f13130ce7 100644 --- a/ADAL/src/ADAL_Internal.h +++ b/ADAL/src/ADAL_Internal.h @@ -25,11 +25,11 @@ //version in static define until we identify a better place: #define ADAL_VER_HIGH 2 #define ADAL_VER_LOW 2 -#define ADAL_VER_PATCH 1 +#define ADAL_VER_PATCH 2 #define STR_ADAL_VER_HIGH "2" #define STR_ADAL_VER_LOW "2" -#define STR_ADAL_VER_PATCH "1" +#define STR_ADAL_VER_PATCH "2" // Framework versions only support high and low for the double value, sadly. #define ADAL_VERSION_NUMBER 2.2 @@ -40,7 +40,7 @@ #define ADAL_VERSION_(high, low, patch) adalVersion_ ## high ## _ ## low ## _ ## patch // This is specially crafted so the name of the variable matches the full ADAL version -#define ADAL_VERSION_VAR ADAL_VERSION_(2, 2, 1) +#define ADAL_VERSION_VAR ADAL_VERSION_(2, 2, 2) #import "ADLogger+Internal.h" #import "ADErrorCodes.h" diff --git a/changelog.txt b/changelog.txt index a9e382fd3..2ae799dab 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Version 2.2.2 (07.18.2016) +------------- +* Fixed a newly-uncovered issue where ADAL could not get the application's code signing Team ID while the device is locked. (#698) + Version 2.2.1 (06.30.2015) ------------- * Added support for iOS 9's -application:openURL:options: method (#662)