Skip to content

Commit 34cd23c

Browse files
authored
chore(repo): release v10.3.0 (#2899)
1 parent 3c6ad32 commit 34cd23c

20 files changed

Lines changed: 39 additions & 58 deletions

File tree

docs/docs_screenshots/pubspec.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ dependencies:
1818
flutter:
1919
sdk: flutter
2020
record: ^6.2.0
21-
stream_chat_flutter: ^10.2.0
22-
stream_core_flutter:
23-
git:
24-
url: https://github.com/GetStream/stream-core-flutter.git
25-
ref: 3585e1488942d8a2d207af06ecc3cd63d7b992c6
26-
path: packages/stream_core_flutter
21+
stream_chat_flutter: ^10.3.0
22+
stream_core_flutter: ^0.5.0
2723

2824
dev_dependencies:
2925
alchemist: ^0.14.0

melos.yaml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -97,18 +97,14 @@ command:
9797
share_plus: ">=12.0.2 <14.0.0"
9898
shimmer: ^3.0.0
9999
sqlite3_flutter_libs: ^0.5.26
100-
stream_chat: ^10.2.0
101-
stream_chat_flutter: ^10.2.0
102-
stream_chat_flutter_core: ^10.2.0
103-
stream_chat_localizations: ^10.2.0
104-
stream_chat_persistence: ^10.2.0
100+
stream_chat: ^10.3.0
101+
stream_chat_flutter: ^10.3.0
102+
stream_chat_flutter_core: ^10.3.0
103+
stream_chat_localizations: ^10.3.0
104+
stream_chat_persistence: ^10.3.0
105105
streaming_shared_preferences: ^2.0.0
106106
svg_icon_widget: ^0.0.1
107-
stream_core_flutter:
108-
git:
109-
url: https://github.com/GetStream/stream-core-flutter.git
110-
ref: 3585e1488942d8a2d207af06ecc3cd63d7b992c6
111-
path: packages/stream_core_flutter
107+
stream_core_flutter: ^0.5.0
112108
stream_thumbnail: ^0.1.0
113109
synchronized: ^3.4.0
114110
thumblr: ^0.0.4

packages/stream_chat/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Upcoming
1+
## 10.3.0
22

33
✅ Added
44

packages/stream_chat/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies:
2424
cupertino_icons: ^1.0.3
2525
flutter:
2626
sdk: flutter
27-
stream_chat: ^10.2.0
27+
stream_chat: ^10.3.0
2828

2929
dependency_overrides:
3030
stream_chat:

packages/stream_chat/lib/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/stream_chat/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_chat
22
homepage: https://getstream.io/
33
description: The official Dart client for Stream Chat, a service for building chat applications.
4-
version: 10.2.0
4+
version: 10.3.0
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

packages/stream_chat_flutter/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Upcoming
1+
## 10.3.0
22

33
⚠️ Changed
44

packages/stream_chat_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ dependencies:
2525
flutter:
2626
sdk: flutter
2727
responsive_builder: ^0.7.0
28-
stream_chat_flutter: ^10.2.0
29-
stream_chat_localizations: ^10.2.0
30-
stream_chat_persistence: ^10.2.0
28+
stream_chat_flutter: ^10.3.0
29+
stream_chat_localizations: ^10.3.0
30+
stream_chat_persistence: ^10.3.0
3131

3232
dependency_overrides:
3333
stream_chat:

packages/stream_chat_flutter/lib/src/message_list_view/auto_scroll_policy.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'package:stream_chat/stream_chat.dart';
1+
import 'package:stream_chat_flutter_core/stream_chat_flutter_core.dart';
22

33
/// How [StreamMessageListView] reacts when a new message arrives.
44
///

packages/stream_chat_flutter/pubspec.yaml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_chat_flutter
22
homepage: https://github.com/GetStream/stream-chat-flutter
33
description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter.
4-
version: 10.2.0
4+
version: 10.3.0
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

@@ -54,20 +54,8 @@ dependencies:
5454
rxdart: ^0.28.0
5555
share_plus: ">=12.0.2 <14.0.0"
5656
shimmer: ^3.0.0
57-
stream_chat_flutter_core: ^10.2.0
58-
stream_core_flutter:
59-
# The ignore below silences `invalid_dependency` because we occasionally
60-
# pin stream_core_flutter to a git ref to iterate on it alongside this
61-
# SDK between its releases.
62-
#
63-
# **Note:** Before publishing stream_chat_flutter, this MUST be swapped
64-
# back to a pub version constraint — git deps are not allowed on pub.dev
65-
# and will block the release.
66-
# ignore: invalid_dependency
67-
git:
68-
url: https://github.com/GetStream/stream-core-flutter.git
69-
ref: 3585e1488942d8a2d207af06ecc3cd63d7b992c6
70-
path: packages/stream_core_flutter
57+
stream_chat_flutter_core: ^10.3.0
58+
stream_core_flutter: ^0.5.0
7159
stream_thumbnail: ^0.1.0
7260
svg_icon_widget: ^0.0.1
7361
synchronized: ^3.4.0

0 commit comments

Comments
 (0)