diff --git a/ADAL.podspec b/ADAL.podspec index 331763ec2..ad2b42978 100644 --- a/ADAL.podspec +++ b/ADAL.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "ADAL" s.module_name = "ADAL" - s.version = "6.0.0" + s.version = "6.0.1" s.summary = "The ADAL SDK for iOS gives you the ability to add Azure Identity authentication to your application" s.description = <<-DESC diff --git a/ADAL/IdentityCore b/ADAL/IdentityCore index e6f72571c..e593b012f 160000 --- a/ADAL/IdentityCore +++ b/ADAL/IdentityCore @@ -1 +1 @@ -Subproject commit e6f72571cad9d13ddbbd1c880d1ab0dc5ffd0dfa +Subproject commit e593b012f82def19875fb9088b41fce4eb210a79 diff --git a/ADAL/resources/mac/Info.plist b/ADAL/resources/mac/Info.plist index 0060727c0..54dfc50bb 100644 --- a/ADAL/resources/mac/Info.plist +++ b/ADAL/resources/mac/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 6.0.0 + 6.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/ADAL/src/ADAL_Internal.h b/ADAL/src/ADAL_Internal.h index 8af1447dd..c40e46e91 100644 --- a/ADAL/src/ADAL_Internal.h +++ b/ADAL/src/ADAL_Internal.h @@ -28,7 +28,7 @@ #define ADAL_VER_HIGH 6 #define ADAL_VER_LOW 0 -#define ADAL_VER_PATCH 0 +#define ADAL_VER_PATCH 1 #define STR_HELPER(x) #x #define STR(x) STR_HELPER(x) diff --git a/changelog.txt b/changelog.txt index d10612221..be833f97c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,12 @@ +Version 6.0.1 (Jan.10.2022) +------ +* Fix crash when decoding back cache object +------ + +Version 6.0.0 (10.20.2021) +------ +* Rename namespace from AD to ADAL to avoid collision with Apple's package +------ Version 5.0.0 (08.23.2021) ------ * Rename ADLogger to ADALLogger to fix a crash about naming collision (ADLogger) between ADAL and Apple's Depth (in ARKit) in iOS 15