Merge tag 'v1.6.1' into develop

tag
This commit is contained in:
Benoit Marty 2023-05-25 11:20:39 +02:00
commit e961a8ccb5
9 changed files with 21 additions and 7 deletions

View File

@ -1,3 +1,20 @@
Changes in Element v1.6.1 (2023-05-25)
======================================
Corrective release for 1.6.0
Bugfixes 🐛
----------
- Allow stateloss on verification dialogfragment ([#8439](https://github.com/vector-im/element-android/issues/8439))
- Fix: Update verification popup text when a re-verification is needed after rust migration (read only sessions) ([#8445](https://github.com/vector-im/element-android/issues/8445))
- Fix several performance issues causing app non responsive issues. ([#8454](https://github.com/vector-im/element-android/issues/8454))
- Fix: The device list screen from the member profile page was always showing the current user devices (rust crypto). ([#8457](https://github.com/vector-im/element-android/issues/8457))
Other changes
-------------
- Remove UI option to manually verify a specific device of another user (deprecated behaviour) ([#8458](https://github.com/vector-im/element-android/issues/8458))
Changes in Element v1.6.0 (2023-05-17)
======================================

View File

@ -1 +0,0 @@
Allow stateloss on verification dialogfragment

View File

@ -1 +0,0 @@
Fix: Update verification popup text when a re-verification is needed after rust migration (read only sessions)

View File

@ -1 +0,0 @@
Fix several performance issues causing app non responsive issues.

View File

@ -1 +0,0 @@
Fix: The device list screen from the member profile page was always showing the current user devices (rust crypto).

View File

@ -1 +0,0 @@
Remove UI option to manually verify a specific device of another user (deprecated behaviour)

View File

@ -0,0 +1,2 @@
Main changes in this version: Element Android is now using the Crypto Rust SDK.
Full changelog: https://github.com/vector-im/element-android/releases

View File

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

View File

@ -37,7 +37,7 @@ ext.versionMinor = 6
// 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 = 2
ext.versionPatch = 1
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'