Prepare hotfix 1.4.25

This commit is contained in:
Benoit Marty 2022-06-27 13:03:37 +02:00 committed by Benoit Marty
parent c9a28c1cf1
commit 95969253b5
3 changed files with 4 additions and 2 deletions

View File

@ -0,0 +1,2 @@
Main changes in this version: Various bug fixes and stability improvements.
Full changelog: https://github.com/vector-im/element-android/releases

View File

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

View File

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