We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f780f6b commit 6c32f6fCopy full SHA for 6c32f6f
plugins/src/main/java/com/google/firebase/gradle/plugins/SemVerTask.kt
@@ -39,6 +39,9 @@ abstract class SemVerTask : DefaultTask() {
39
val previous = ModuleVersion.fromStringOrNull(previousVersionString.get()) ?: return
40
val current = ModuleVersion.fromStringOrNull(currentVersionString.get()) ?: return
41
42
+ println("Previous: ${previousVersionString.get()}")
43
+ println("Current: ${currentVersionString.get()}")
44
+
45
val bump =
46
when {
47
previous.major != current.major -> VersionDelta.MAJOR
0 commit comments