chore: Bump version
This commit is contained in:
parent
7a85d52d93
commit
d2ee73f96f
|
|
@ -1,3 +1,7 @@
|
|||
## [0.6.2] - 25nd Oct 2021
|
||||
- fix: Unnecessary null check
|
||||
- fix: Auto update room states
|
||||
|
||||
## [0.6.1] - 18nd Oct 2021
|
||||
- fix: Missing null check in a nested json map
|
||||
|
||||
|
|
|
|||
|
|
@ -741,7 +741,7 @@ class KeyManager {
|
|||
client.getUserDeviceKeysByCurve25519Key(dbSession.senderKey);
|
||||
args.dbSessions.add(_DbInboundGroupSessionBundle(
|
||||
dbSession: dbSession,
|
||||
verified: device.verified ?? false,
|
||||
verified: device.verified,
|
||||
));
|
||||
i++;
|
||||
if (i > 10) {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name: matrix
|
||||
description: Matrix Dart SDK
|
||||
version: 0.6.1
|
||||
version: 0.6.2
|
||||
homepage: https://famedly.com
|
||||
|
||||
environment:
|
||||
|
|
|
|||
Loading…
Reference in New Issue