chore: Bump version

This commit is contained in:
Christian Pauly 2022-12-14 08:59:56 +01:00
parent c66d2edb5e
commit 2f1696bff8
3 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,6 @@
## [0.15.9] - 14th Dec 2022
- refactor: Key manager megolm handling to make key generation more efficient
## [0.15.8] - 12th Dec 2022
- fix: leaved direct chat name (Reza)

View File

@ -383,14 +383,13 @@ class KeyManager {
.map((e) => e.key))
: <String>{};
// check if a device got removed
// check if a device got removed
if (oldDeviceIds.difference(newDeviceIds).isNotEmpty) {
print("Device deleted, rotating megolm session");
wipe = true;
break;
}
// check if any new devices need keys
// check if any new devices need keys
final newDevices = newDeviceIds.difference(oldDeviceIds);
if (newDeviceIds.isNotEmpty) {
devicesToReceive.addAll(newDeviceKeys.where(

View File

@ -1,6 +1,6 @@
name: matrix
description: Matrix Dart SDK
version: 0.15.8
version: 0.15.9
homepage: https://famedly.com
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git