diff --git a/fastlane/metadata/android/en-US/changelogs/40100640.txt b/fastlane/metadata/android/en-US/changelogs/40100640.txt new file mode 100644 index 0000000000..5ab59ae5d8 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100640.txt @@ -0,0 +1,3 @@ +- Add UnifiedPush support +- Make composer notification (not allowing to send messages) more compact +- Fix crash for SC dark theme when trying to remove rooms from spaces diff --git a/vector/build.gradle b/vector/build.gradle index a044e1815a..93b4cd0f6b 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -16,7 +16,7 @@ ext.versionMajor = 1 ext.versionMinor = 2 ext.versionPatch = 0 -ext.scVersion = 41 +ext.scVersion = 42 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -122,10 +122,10 @@ android { // `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode. // Other branches (main, features, etc.) will have version code based on application version. - versionCode 40100630 + versionCode 40100640 // Required for sonar analysis - versionName "1.2.0.sc41" + versionName "1.2.0.sc42" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -264,7 +264,7 @@ android { dimension "store" isDefault = true - versionName "1.2.0.sc41" + versionName "1.2.0.sc42" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -275,7 +275,7 @@ android { fdroid { dimension "store" - versionName "1.2.0.sc41" + versionName "1.2.0.sc42" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"