1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

v0.33.1-beta

This commit is contained in:
Evgenii Kozlov 2024-11-20 16:15:16 +01:00
parent 8b4df6d10d
commit 16648d3b1e
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
version.versionMajor=0
version.versionMinor=33
version.versionPatch=30
version.versionPatch=31
version.useDatedVersionName=false

View file

@ -98,7 +98,7 @@ ext.getBuildVersionName = {
def date = getCurrentDate()
return "${versionMajor}.${versionMinor}.${versionPatch}-${date}"
} else {
return "${versionMajor}.${versionMinor}.${versionPatch}"
return "${versionMajor}.${versionMinor}.${versionPatch}-beta"
}
}