update dependencies
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
## 1.0.1-beta
|
||||
|
||||
- Fixed pub analysis issues
|
||||
|
||||
## 1.0.0-beta
|
||||
|
||||
- 🛑 **BREAKING** Renamed `Client` to less generic `StreamChatClient`
|
||||
|
||||
@@ -180,4 +180,11 @@ class EventChannel extends ChannelModel {
|
||||
topLevelFields,
|
||||
));
|
||||
}
|
||||
|
||||
/// Serialize to json
|
||||
@override
|
||||
Map<String, dynamic> toJson() => Serialization.moveFromExtraDataToRoot(
|
||||
_$EventChannelToJson(this),
|
||||
topLevelFields,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -307,4 +307,11 @@ class TranslatedMessage extends Message {
|
||||
Serialization.moveToExtraDataFromRoot(json, topLevelFields),
|
||||
);
|
||||
}
|
||||
|
||||
/// Serialize to json
|
||||
@override
|
||||
Map<String, dynamic> toJson() => Serialization.moveFromExtraDataToRoot(
|
||||
_$TranslatedMessageToJson(this),
|
||||
topLevelFields,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,4 +2,4 @@ import 'package:stream_chat/src/client.dart';
|
||||
|
||||
/// Current package version
|
||||
/// Used in [StreamChatClient] to build the `x-stream-client` header
|
||||
const PACKAGE_VERSION = '1.0.0-beta';
|
||||
const PACKAGE_VERSION = '1.0.1-beta';
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
name: stream_chat
|
||||
homepage: https://getstream.io/
|
||||
description: The official Dart client for Stream Chat, a service for building chat applications.
|
||||
version: 1.0.0-beta
|
||||
version: 1.0.1-beta
|
||||
repository: https://github.com/GetStream/stream-chat-dart
|
||||
issue_tracker: https://github.com/GetStream/stream-chat-dart/issues
|
||||
|
||||
|
||||
@@ -10,8 +10,7 @@ environment:
|
||||
flutter: ">=1.17.0"
|
||||
|
||||
dependencies:
|
||||
stream_chat:
|
||||
path: ../stream_chat
|
||||
stream_chat: ^1.0.0-beta
|
||||
flutter:
|
||||
sdk: flutter
|
||||
rxdart: ^0.25.0
|
||||
|
||||
Reference in New Issue
Block a user