Skip to content

Commit

Permalink
Update versions in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgusain committed Jan 9, 2024
1 parent d2101f1 commit 7fb7f14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion adal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ android {
}

// In dev, we want to keep the dependencies(common4j, broker4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "17.0.0"
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "1.0.+"

dependencies {
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$rootProject.ext.coreLibraryDesugaringVersion"
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version Next
-------------

Version 4.8.4
-------------
- [PATCH] Adding Credential Manager version (for common, but note that ADAL will not include the passkey feature) (#1772)
Expand Down
4 changes: 2 additions & 2 deletions userappwithbroker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ allprojects {
}
}

def adalVersion = "4.+"
def commonVersion = "17.+"
def adalVersion = "4.8.4"
def commonVersion = "17.0.0"

if (project.hasProperty("distAdalVersion")) {
println "Overriding adal version to dist property " + distAdalVersion
Expand Down

0 comments on commit 7fb7f14

Please sign in to comment.