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 f427c0e commit f241e66Copy full SHA for f241e66
plugins/src/main/kotlin/Versions.kt
@@ -51,12 +51,12 @@ import org.gradle.jvm.toolchain.JavaLanguageVersion
51
52
// Note: 2 digits max for each value
53
private const val versionMajor = 0
54
-private const val versionMinor = 4
+private const val versionMinor = 5
55
56
// Note: even values are reserved for regular release, odd values for hotfix release.
57
// When creating a hotfix, you should decrease the value, since the current value
58
// is the value for the next regular release.
59
-private const val versionPatch = 17
+private const val versionPatch = 0
60
61
object Versions {
62
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
0 commit comments