Skip to content

Commit

Permalink
Update changelog, remove “-dev” from version string.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Pangrle committed Mar 22, 2017
1 parent 4fe6e98 commit 3ed7f4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ADAL/src/ADAL_Internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
// Framework versions only support high and low for the double value, sadly.
#define ADAL_VERSION_NUMBER INT_CONCAT(ADAL_VER_HIGH, ADAL_VER_LOW)

#define ADAL_VERSION_STRING STR(ADAL_VER_HIGH) "." STR(ADAL_VER_LOW) "." STR(ADAL_VER_PATCH) "-dev"
#define ADAL_VERSION_NSSTRING @"" STR(ADAL_VER_HIGH) "." STR(ADAL_VER_LOW) "." STR(ADAL_VER_PATCH) "-dev"
#define ADAL_VERSION_STRING STR(ADAL_VER_HIGH) "." STR(ADAL_VER_LOW) "." STR(ADAL_VER_PATCH)
#define ADAL_VERSION_NSSTRING @"" STR(ADAL_VER_HIGH) "." STR(ADAL_VER_LOW) "." STR(ADAL_VER_PATCH)

#define ADAL_VERSION_HELPER(high, low, patch) adalVersion_ ## high ## _ ## low ## _ ## patch
#define ADAL_VERSION_(high, low, patch) ADAL_VERSION_HELPER(high, low, patch)
Expand Down
11 changes: 7 additions & 4 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Version 2.4.0 (03.08.2017)
Version 2.4.0 (03.21.2017)
-------------
* Telemetry APIs are now public
* Telemetry now support multiple dispatchers
* ADFS authority validation
* ADAL no longer supports 32-bit macOS applications (#755)
* Added ADTelemetry interface for app developers to consume ADAL telemetry in their telemetry pipelines (#859)
* Fixed documentation warnings in ADAL headers (#900)
* Replaced NSURLConnection (which was deprecated in iOS 9) usage with NSURLSession (#646)
* Removed iOS 9 deprecated API usage in NSString+ADHelperMethods and NSURL+ADHelperMethods (#889, #914)


Version 2.3.1 (02.09.2017)
-------------
Expand Down

0 comments on commit 3ed7f4a

Please sign in to comment.