chore: Bump version

This commit is contained in:
Christian Pauly 2022-02-08 08:34:56 +01:00
parent d7f0da3545
commit f9875e2929
3 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,6 @@
## [0.8.4] - 08nd Feb 2022
- fix: Call onChange correctly on redacted aggregation events
## [0.8.3] - 07nd Feb 2022
- fix: Remove onHistoryReceived which was broken anyway
- fix: Remove aggregation event doesnt trigger onChange

View File

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

View File

@ -146,7 +146,7 @@ void main() {
expect(updateCount, 3);
expect(insertList, [0, 0, 0]);
expect(insertList.length, timeline.events.length);
expect(changeList, [1]);
expect(changeList, [2]);
expect(removeList, []);
expect(timeline.events.length, 3);
expect(timeline.events[2].redacted, true);
@ -215,7 +215,7 @@ void main() {
expect(updateCount, 13);
expect(insertList, [0, 0, 0, 0, 0, 0, 1, 2]);
expect(insertList.length, timeline.events.length);
expect(changeList, [1, 0, 0, 0, 1, 2]);
expect(changeList, [2, 0, 0, 0, 1, 2]);
expect(removeList, []);
expect(timeline.events[0].status, EventStatus.error);
expect(timeline.events[1].status, EventStatus.error);
@ -230,7 +230,7 @@ void main() {
expect(updateCount, 14);
expect(insertList, [0, 0, 0, 0, 0, 0, 1, 2]);
expect(changeList, [1, 0, 0, 0, 1, 2]);
expect(changeList, [2, 0, 0, 0, 1, 2]);
expect(removeList, [0]);
expect(timeline.events.length, 7);
expect(timeline.events[0].status, EventStatus.error);
@ -277,7 +277,7 @@ void main() {
expect(updateCount, 17);
expect(insertList, [0, 0, 0, 0, 0, 0, 1, 2, 0]);
expect(changeList, [1, 0, 0, 0, 1, 2, 0, 0]);
expect(changeList, [2, 0, 0, 0, 1, 2, 0, 0]);
expect(removeList, [0]);
expect(timeline.events.length, 1);
expect(timeline.events[0].status, EventStatus.sent);