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
|
## [0.6.1] - 18nd Oct 2021
|
||||||
- fix: Missing null check in a nested json map
|
- fix: Missing null check in a nested json map
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -741,7 +741,7 @@ class KeyManager {
|
||||||
client.getUserDeviceKeysByCurve25519Key(dbSession.senderKey);
|
client.getUserDeviceKeysByCurve25519Key(dbSession.senderKey);
|
||||||
args.dbSessions.add(_DbInboundGroupSessionBundle(
|
args.dbSessions.add(_DbInboundGroupSessionBundle(
|
||||||
dbSession: dbSession,
|
dbSession: dbSession,
|
||||||
verified: device.verified ?? false,
|
verified: device.verified,
|
||||||
));
|
));
|
||||||
i++;
|
i++;
|
||||||
if (i > 10) {
|
if (i > 10) {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.6.1
|
version: 0.6.2
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue