From 8cd40509d6e0972c003e88744ecea9e327833988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Mon, 14 Jul 2025 14:59:31 +0200 Subject: [PATCH] build: add changelog for 1.1.0 --- CHANGELOG.md | 13 +++++++++++++ pubspec.yaml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f747a70a..75c6f28f 100644 --- a/CHANGELOG.md +++ b/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 - chore: Add hint to init vodozemac also in native implementations (Christian Kußowski) - fix: exportDump and importDump and add unit tests (Christian Kußowski) diff --git a/pubspec.yaml b/pubspec.yaml index 04d9b4b5..07eeec83 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: matrix description: Matrix Dart SDK -version: 1.0.1 +version: 1.1.0 homepage: https://famedly.com repository: https://github.com/famedly/matrix-dart-sdk.git issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues