updating version for hotfix release

This commit is contained in:
Adam Brown 2022-08-01 16:51:19 +01:00
parent 9ea0f88181
commit e0349b27ed
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ android {
// that the app's state is completely cleared between tests.
testInstrumentationRunnerArguments clearPackageData: 'true'
buildConfigField "String", "SDK_VERSION", "\"1.4.30\""
buildConfigField "String", "SDK_VERSION", "\"1.4.31\""
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""

View file

@ -36,7 +36,7 @@ ext.versionMinor = 4
// 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.
ext.versionPatch = 30
ext.versionPatch = 31
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'