Skip to content

Commit dac3c72

Browse files
committed
version++
1 parent 2428273 commit dac3c72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/src/main/kotlin/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ import org.gradle.jvm.toolchain.JavaLanguageVersion
4242

4343
// Note: 2 digits max for each value
4444
private const val versionMajor = 0
45-
private const val versionMinor = 5
45+
private const val versionMinor = 6
4646

4747
// Note: even values are reserved for regular release, odd values for hotfix release.
4848
// When creating a hotfix, you should decrease the value, since the current value
4949
// is the value for the next regular release.
50-
private const val versionPatch = 4
50+
private const val versionPatch = 1
5151

5252
object Versions {
5353
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch

0 commit comments

Comments
 (0)