Skip to content

Commit 1c44d26

Browse files
author
Kanishk Panwar
committed
updated release information and changelog
updated release information and changelog
1 parent c77368f commit 1c44d26

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

ADALiOS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ADALiOS"
3-
s.version = "1.1.10"
3+
s.version = "1.1.11"
44
s.summary = "The ADAL SDK for iOS gives you the ability to add Azure Identity authentication to your application"
55

66
s.description = <<-DESC

ADALiOS/ADALiOS/ADALiOS.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
//version in static define until we identify a better place:
2121
#define ADAL_VER_HIGH 1
2222
#define ADAL_VER_LOW 1
23+
#define ADAL_VER_PATCH 11
2324

2425
#import "ADLogger.h"
2526
#import "ADErrorCodes.h"

ADALiOS/ADALiOS/ADLogger.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ +(NSUUID*) getCorrelationId
197197

198198
+(NSString*) getAdalVersion
199199
{
200-
return [NSString stringWithFormat:@"%d.%d", ADAL_VER_HIGH, ADAL_VER_LOW];
200+
return [NSString stringWithFormat:@"%d.%d.%d", ADAL_VER_HIGH, ADAL_VER_LOW, ADAL_VER_PATCH];
201201
}
202202

203203
+(void) logToken: (NSString*) token

changelog.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Version 1.1.11
2+
--------------
3+
This release contains bug fixes and updates for an improved developer experience. Given below is the changelist -
4+
5+
* Added support for client assertion to acquire token.
6+
* Client Metric reporting support for improved service analytics.
7+
* Updated logging messages to include ADAL version and correlation id.
8+
* Fixed Issue #230.
9+
* Fixed Issue #229.
10+
111
Version 1.1.10
212
--------------
313
This release contains several bug fixes and updates for an improved developer experience. Given below is the changelist -
@@ -51,4 +61,4 @@ This release includes bug fixes for PkeyAuth protocol. Given below is a cumulati
5161
* Removed PII indentifying log statements.
5262
* Fixed the issue where the root view controller was being dismissed upon web view cancellation.
5363
* Fixed memory leaks and added allocation checks.
54-
* Fixed cache issue where adal would error out while getting token for 3rd unique user.
64+
* Fixed cache issue where adal would error out while getting token for 3rd unique user.

0 commit comments

Comments
 (0)