Prepare hotfix 1.4.20

This commit is contained in:
Benoit Marty 2022-06-13 12:37:39 +02:00
parent 2a9ac539e4
commit 4fa8e70276
6 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,12 @@
Changes in Element 1.4.20 (2022-06-13)
======================================
Bugfixes 🐛
----------
- Fix: All rooms are shown in Home regardless of the switch state. ([#6272](https://github.com/vector-im/element-android/issues/6272))
- Fix regression on EventInsertLiveObserver getting blocked so there is no event being processed anymore. ([#6278](https://github.com/vector-im/element-android/issues/6278))
Changes in Element 1.4.19 (2022-06-07)
======================================

View file

@ -1 +0,0 @@
Fix: All rooms are shown in Home regardless of the switch state.

View file

@ -1 +0,0 @@
Fix regression on EventInsertLiveObserver getting blocked so there is no event being processed anymore.

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.19\""
buildConfigField "String", "SDK_VERSION", "\"1.4.20\""
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 = 19
ext.versionPatch = 20
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'