diff --git a/CHANGELOG.md b/CHANGELOG.md index 2abd35f9..d30a93d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.2.6 +- fix: Missing RoomCreationTypes + ## 0.2.5 - fix: Request aliases diff --git a/lib/matrix_api_lite.dart b/lib/matrix_api_lite.dart index f44af1ea..afd709b0 100644 --- a/lib/matrix_api_lite.dart +++ b/lib/matrix_api_lite.dart @@ -56,6 +56,7 @@ export 'src/model/push_rule_set.dart'; export 'src/model/pusher.dart'; export 'src/model/request_token_response.dart'; export 'src/model/room_alias_information.dart'; +export 'src/model/room_creation_types.dart'; export 'src/model/room_keys_info.dart'; export 'src/model/room_keys_keys.dart'; export 'src/model/room_summary.dart'; diff --git a/lib/src/model/room_creation_types.dart b/lib/src/model/room_creation_types.dart new file mode 100644 index 00000000..703f0ce1 --- /dev/null +++ b/lib/src/model/room_creation_types.dart @@ -0,0 +1,3 @@ +abstract class RoomCreationTypes { + static const String mSpace = 'm.space'; +} diff --git a/pubspec.yaml b/pubspec.yaml index 4a6177c7..9c1b9de8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: matrix_api_lite description: Dead simple data model for the matrix.org client-server API. -version: 0.2.5 +version: 0.2.6 homepage: https://famedly.com environment: