diff --git a/changelog b/changelog index f5acdcd323..04ce9d006d 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,9 @@ MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki +Version 5.7.1 +---------- +-[PATCH] Update common @18.1.3 + Version 5.7.0 ---------- -[MINOR] Support for email OTP MFA in native authentication (#2167) diff --git a/common b/common index 9fa8331224..e97d4411ec 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 9fa833122446d53dc76f8fd44215cb6c45f20d3a +Subproject commit e97d4411ec50f41a3db0022073e98a032d22ef20 diff --git a/msal/build.gradle b/msal/build.gradle index de9fa90982..1450baa332 100644 --- a/msal/build.gradle +++ b/msal/build.gradle @@ -188,12 +188,12 @@ task sourcesJar(type: Jar) { // In dev, we want to keep the dependencies (common4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline. // In release/*, we change these to specific versions being consumed. -def commonVersion = "18.1.0" +def commonVersion = "18.1.3" if (project.hasProperty("distCommonVersion")) { commonVersion = project.distCommonVersion } // Used for testfixtures -def common4jVersion = "15.1.0" +def common4jVersion = "15.1.3" if (project.hasProperty("distCommon4jVersion")) { distCommon4jVersion = project.distCommon4jVersion } diff --git a/msal/versioning/version.properties b/msal/versioning/version.properties index d71b04af86..38e7e06c3e 100644 --- a/msal/versioning/version.properties +++ b/msal/versioning/version.properties @@ -1,3 +1,3 @@ #Wed Aug 01 15:24:11 PDT 2018 -versionName=5.7.0 +versionName=5.7.1 versionCode=0 diff --git a/msalautomationapp/build.gradle b/msalautomationapp/build.gradle index 4cae7b0abd..fc41419ba9 100644 --- a/msalautomationapp/build.gradle +++ b/msalautomationapp/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' -def msalVersion = "5.7.0" +def msalVersion = "5.7.1" if (project.hasProperty("distMsalVersion")) { msalVersion = distMsalVersion diff --git a/testapps/testapp/build.gradle b/testapps/testapp/build.gradle index af4a220096..610b7edefe 100644 --- a/testapps/testapp/build.gradle +++ b/testapps/testapp/build.gradle @@ -29,7 +29,7 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' -def msalVersion = "5.7.0" +def msalVersion = "5.7.1" if (project.hasProperty("distMsalVersion")) { msalVersion = distMsalVersion