Skip to content

Commit

Permalink
Prepare hotfix 1.4.20
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Jun 13, 2022
1 parent 2a9ac53 commit 4fa8e70
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)
======================================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/6272.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/6278.bugfix

This file was deleted.

2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/40104200.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion matrix-sdk-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()}\""
Expand Down
2 changes: 1 addition & 1 deletion vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4fa8e70

Please sign in to comment.