Skip to content

Commit e961a8c

Browse files
committed
Merge tag 'v1.6.1' into develop
tag
2 parents cff9fbd + b9cc1b6 commit e961a8c

File tree

9 files changed

+21
-7
lines changed

9 files changed

+21
-7
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Changes in Element v1.6.1 (2023-05-25)
2+
======================================
3+
4+
Corrective release for 1.6.0
5+
6+
Bugfixes 🐛
7+
----------
8+
- Allow stateloss on verification dialogfragment ([#8439](https://github.com/vector-im/element-android/issues/8439))
9+
- 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))
10+
- Fix several performance issues causing app non responsive issues. ([#8454](https://github.com/vector-im/element-android/issues/8454))
11+
- 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))
12+
13+
Other changes
14+
-------------
15+
- Remove UI option to manually verify a specific device of another user (deprecated behaviour) ([#8458](https://github.com/vector-im/element-android/issues/8458))
16+
17+
118
Changes in Element v1.6.0 (2023-05-17)
219
======================================
320

changelog.d/8439.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/8445.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/8454.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/8457.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/8458.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Main changes in this version: Element Android is now using the Crypto Rust SDK.
2+
Full changelog: https://github.com/vector-im/element-android/releases

matrix-sdk-android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ android {
6363
// that the app's state is completely cleared between tests.
6464
testInstrumentationRunnerArguments clearPackageData: 'true'
6565

66-
buildConfigField "String", "SDK_VERSION", "\"1.6.2\""
66+
buildConfigField "String", "SDK_VERSION", "\"1.6.1\""
6767

6868
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
6969
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""

vector-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ext.versionMinor = 6
3737
// Note: even values are reserved for regular release, odd values for hotfix release.
3838
// When creating a hotfix, you should decrease the value, since the current value
3939
// is the value for the next regular release.
40-
ext.versionPatch = 2
40+
ext.versionPatch = 1
4141

4242
static def getGitTimestamp() {
4343
def cmd = 'git show -s --format=%ct'

0 commit comments

Comments
 (0)