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 2428273 commit dac3c72Copy full SHA for dac3c72
plugins/src/main/kotlin/Versions.kt
@@ -42,12 +42,12 @@ import org.gradle.jvm.toolchain.JavaLanguageVersion
42
43
// Note: 2 digits max for each value
44
private const val versionMajor = 0
45
-private const val versionMinor = 5
+private const val versionMinor = 6
46
47
// Note: even values are reserved for regular release, odd values for hotfix release.
48
// When creating a hotfix, you should decrease the value, since the current value
49
// is the value for the next regular release.
50
-private const val versionPatch = 4
+private const val versionPatch = 1
51
52
object Versions {
53
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
0 commit comments