Skip to content

Commit 7283f97

Browse files
shahzaibjAzure DevOps Pipeline
andauthored
Merge alias branch into release branch for 6.2.0 (#2329)
See title. --------- Co-authored-by: Azure DevOps Pipeline <[email protected]>
1 parent a71356f commit 7283f97

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-andr
22

33
vNext
44
----------
5+
6+
Version 6.2.0
7+
----------
8+
- [PATCH] Update common @21.4.0
59
- [MINOR] Update AGP Version to 8.1.0 (#2254)
610

711
Version 6.1.1

common

Submodule common updated 26 files

msal/build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ task sourcesJar(type: Jar) {
189189

190190
// In dev, we want to keep the dependencies (common4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
191191
// In release/*, we change these to specific versions being consumed.
192-
def commonVersion = "1.0.+"
192+
def commonVersion = "21.4.0"
193193
if (project.hasProperty("distCommonVersion")) {
194194
commonVersion = project.distCommonVersion
195195
}
196196
// Used for testfixtures
197-
def common4jVersion = "1.0.+"
197+
def common4jVersion = "21.4.0"
198198
if (project.hasProperty("distCommon4jVersion")) {
199199
distCommon4jVersion = project.distCommon4jVersion
200200
}
@@ -310,16 +310,16 @@ afterEvaluate {
310310
// Gradle 6.1.1 and Android Gradle Plugin 4.0.1 doesn't rename the file (see 'outputFileName' above)
311311
// Adding this work around to have the file properly renamed.
312312
// Please uncomment the section below for the Maven release step only. Currently troubleshooting why this extra renaming configuration is still needed for MSAL.
313-
// tasks.named("assembleDistRelease").configure {
314-
// def buildFile = file("$buildDir/outputs/aar/${archivesBaseName}-dist-release.aar")
315-
// print "Build file $buildFile"
316-
// doLast {
317-
// println "Renaming build file $buildFile to '$buildDir${File.separator}outputs${File.separator}aar${File.separator}${archivesBaseName}-${version}.aar'"
318-
// if (!buildFile.renameTo("$buildDir${File.separator}outputs${File.separator}aar${File.separator}${archivesBaseName}-${version}.aar")) {
319-
// println "Rename failed!"
320-
// }
321-
// }
322-
// }
313+
tasks.named("assembleDistRelease").configure {
314+
def buildFile = file("$buildDir/outputs/aar/${archivesBaseName}-dist-release.aar")
315+
print "Build file $buildFile"
316+
doLast {
317+
println "Renaming build file $buildFile to '$buildDir${File.separator}outputs${File.separator}aar${File.separator}${archivesBaseName}-${version}.aar'"
318+
if (!buildFile.renameTo("$buildDir${File.separator}outputs${File.separator}aar${File.separator}${archivesBaseName}-${version}.aar")) {
319+
println "Rename failed!"
320+
}
321+
}
322+
}
323323
publishing {
324324
publications {
325325
msal(MavenPublication) {

msal/versioning/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#Wed Aug 01 15:24:11 PDT 2018
2-
versionName=6.1.1
2+
versionName=6.2.0
33
versionCode=0

0 commit comments

Comments
 (0)