Merge pull request #2115 from famedly/release/v1.1.0
build: add changelog for 1.1.0
This commit is contained in:
commit
e76593fc7c
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,3 +1,16 @@
|
||||||
|
## [1.1.0] 14th July 2025
|
||||||
|
- fix: (BREAKING) Can not logout and login again with same Client object (Christian Kußowski)
|
||||||
|
- refactor: Clean up new dart version lints (Christian Kußowski)
|
||||||
|
|
||||||
|
Now if you logout and login again you will reuse the same database. In case you use
|
||||||
|
database encryption and want to use a new key, please consider recreating the database
|
||||||
|
like this:
|
||||||
|
|
||||||
|
```dart
|
||||||
|
await client.database.delete();
|
||||||
|
client.database = await MatrixSdkDatabase.init(/*...*/);
|
||||||
|
```
|
||||||
|
|
||||||
## [1.0.1] 16th June 2025
|
## [1.0.1] 16th June 2025
|
||||||
- chore: Add hint to init vodozemac also in native implementations (Christian Kußowski)
|
- chore: Add hint to init vodozemac also in native implementations (Christian Kußowski)
|
||||||
- fix: exportDump and importDump and add unit tests (Christian Kußowski)
|
- fix: exportDump and importDump and add unit tests (Christian Kußowski)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 1.0.1
|
version: 1.1.0
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
repository: https://github.com/famedly/matrix-dart-sdk.git
|
repository: https://github.com/famedly/matrix-dart-sdk.git
|
||||||
issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues
|
issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue