Skip to content

Commit 8f3277d

Browse files
committed
fix-semantic-version-plugin
1 parent 22732f0 commit 8f3277d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

common-build-logic/src/main/kotlin/semantic-version.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
tasks.register("printSemanticVersion") {
2+
notCompatibleWithConfigurationCache("printSemanticVersion is not yet compatible with configuration cache")
23
doLast {
34
println("${project.name} ${common.semanticversion.getSemanticVersion(project)}")
45
}
56
}
67

78
tasks.register("incrementSemanticVersionPatch") {
9+
notCompatibleWithConfigurationCache("incrementSemanticVersionPatch is not yet compatible with configuration cache")
810
doLast {
911
common.semanticversion.incrementSemanticVersionPatch(project)
1012
}
1113
}
1214
tasks.register("incrementSemanticVersionMinor") {
15+
notCompatibleWithConfigurationCache("incrementSemanticVersionMinor is not yet compatible with configuration cache")
1316
doLast {
1417
common.semanticversion.incrementSemanticVersionMinor(project)
1518
}
1619
}
1720
tasks.register("incrementSemanticVersionMajor") {
21+
notCompatibleWithConfigurationCache("incrementSemanticVersionMajor is not yet compatible with configuration cache")
1822
doLast {
1923
common.semanticversion.incrementSemanticVersionMajor(project)
2024
}

version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Mon May 12 05:49:58 UTC 2025
2-
version=2.0.419
1+
#Mon May 19 23:14:34 IDT 2025
2+
version=2.0.420

0 commit comments

Comments
 (0)