chore: Bump version
This commit is contained in:
parent
238c5addb3
commit
6f4f69106e
|
|
@ -1,3 +1,6 @@
|
||||||
|
## 0.5.1
|
||||||
|
- feat: Add constructors to SyncUpdate classes
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
- fix: threepidCreds should be threepid_creds and an object
|
- fix: threepidCreds should be threepid_creds and an object
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,11 @@ class RoomsUpdate {
|
||||||
Map<String, InvitedRoomUpdate>? invite;
|
Map<String, InvitedRoomUpdate>? invite;
|
||||||
Map<String, LeftRoomUpdate>? leave;
|
Map<String, LeftRoomUpdate>? leave;
|
||||||
|
|
||||||
RoomsUpdate({this.join, this.invite, this.leave});
|
RoomsUpdate({
|
||||||
|
this.join,
|
||||||
|
this.invite,
|
||||||
|
this.leave,
|
||||||
|
});
|
||||||
|
|
||||||
RoomsUpdate.fromJson(Map<String, dynamic> json) {
|
RoomsUpdate.fromJson(Map<String, dynamic> json) {
|
||||||
join = json['join'] != null
|
join = json['join'] != null
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix_api_lite
|
name: matrix_api_lite
|
||||||
description: Dead simple data model for the matrix.org client-server API.
|
description: Dead simple data model for the matrix.org client-server API.
|
||||||
version: 0.5.0
|
version: 0.5.1
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
repository: https://gitlab.com/famedly/company/frontend/libraries/matrix_api_lite/
|
repository: https://gitlab.com/famedly/company/frontend/libraries/matrix_api_lite/
|
||||||
issues: https://gitlab.com/famedly/company/frontend/libraries/matrix_api_lite/-/issues
|
issues: https://gitlab.com/famedly/company/frontend/libraries/matrix_api_lite/-/issues
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue