version++

This commit is contained in:
Benoit Marty
2024-09-12 15:06:50 +02:00
parent 60859550ab
commit e391a2747c

View File

@@ -42,12 +42,12 @@ import org.gradle.jvm.toolchain.JavaLanguageVersion
// Note: 2 digits max for each value
private const val versionMajor = 0
private const val versionMinor = 5
private const val versionMinor = 6
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
private const val versionPatch = 4
private const val versionPatch = 1
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch