Skip to content

Commit e41c668

Browse files
committed
Merge branch 'release/0.4.4'
2 parents 488c236 + b0d5166 commit e41c668

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Changes in Element X v0.4.4 (2024-02-15)
2+
========================================
3+
4+
Bugfixes 🐛
5+
----------
6+
7+
- Fix decryption of previous messages after session verification not working.
8+
19
Changes in Element X v0.4.3 (2024-02-14)
210
========================================
311

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Main changes in this version:
2+
- Fix decryption of previous messages after session verification not working.
3+
4+
Full changelog: https://github.com/element-hq/element-x-android/releases

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jsoup = "org.jsoup:jsoup:1.17.2"
152152
appyx_core = { module = "com.bumble.appyx:core", version.ref = "appyx" }
153153
molecule-runtime = "app.cash.molecule:molecule-runtime:1.3.2"
154154
timber = "com.jakewharton.timber:timber:5.0.1"
155-
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.1"
155+
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.2"
156156
matrix_richtexteditor = { module = "io.element.android:wysiwyg", version.ref = "wysiwyg" }
157157
matrix_richtexteditor_compose = { module = "io.element.android:wysiwyg-compose", version.ref = "wysiwyg" }
158158
sqldelight-driver-android = { module = "app.cash.sqldelight:android-driver", version.ref = "sqldelight" }

plugins/src/main/kotlin/Versions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private const val versionMinor = 4
5656
// Note: even values are reserved for regular release, odd values for hotfix release.
5757
// When creating a hotfix, you should decrease the value, since the current value
5858
// is the value for the next regular release.
59-
private const val versionPatch = 3
59+
private const val versionPatch = 4
6060

6161
object Versions {
6262
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch

0 commit comments

Comments
 (0)