diff --git a/plugins/src/main/kotlin/Versions.kt b/plugins/src/main/kotlin/Versions.kt index 9dae0b6cfb..fb1972c8fc 100644 --- a/plugins/src/main/kotlin/Versions.kt +++ b/plugins/src/main/kotlin/Versions.kt @@ -45,7 +45,7 @@ private const val versionMonth = 7 * Release number in the month. Value must be in [0,99]. * Do not update this value. it is updated by the release script. */ -private const val versionReleaseNumber = 2 +private const val versionReleaseNumber = 3 object Versions { /** @@ -55,7 +55,10 @@ object Versions { * See comment above for the calculation method. */ const val VERSION_CODE = (2000 + versionYear) * 10_000 + versionMonth * 100 + versionReleaseNumber - val VERSION_NAME = "$versionYear.${versionMonth.toString().padStart(2, '0')}.$versionReleaseNumber" + // Blap: the displayed version tracks the desktop release. VERSION_CODE stays on the + // CalVer formula above because Android requires it to only ever increase — keep + // bumping versionReleaseNumber (and month/year) for every release. + const val VERSION_NAME = "1.0.4" /** * Compile SDK version. Must be updated when a new Android version is released.