Skip to content

Commit 3023e74

Browse files
authored
chore(repo): release v9.3.0 (#2104)
1 parent d2ac7e7 commit 3023e74

File tree

16 files changed

+44
-26
lines changed

16 files changed

+44
-26
lines changed

melos.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ command:
5959
share_plus: ^10.0.2
6060
shimmer: ^3.0.0
6161
sqlite3_flutter_libs: ^0.5.26
62-
stream_chat: ^9.2.0
63-
stream_chat_flutter: ^9.2.0+1
64-
stream_chat_flutter_core: ^9.2.0
65-
stream_chat_localizations: ^9.2.0
66-
stream_chat_persistence: ^9.2.0
62+
stream_chat: ^9.3.0
63+
stream_chat_flutter: ^9.3.0
64+
stream_chat_flutter_core: ^9.3.0
65+
stream_chat_localizations: ^9.3.0
66+
stream_chat_persistence: ^9.3.0
6767
svg_icon_widget: ^0.0.1
6868
synchronized: ^3.1.0+1
6969
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+
## 9.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: ^9.2.0
27+
stream_chat: ^9.3.0
2828

2929
flutter:
3030
uses-material-design: true

packages/stream_chat/lib/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ import 'package:stream_chat/src/client/client.dart';
33
/// Current package version
44
/// Used in [StreamChatClient] to build the `x-stream-client` header
55
// ignore: constant_identifier_names
6-
const PACKAGE_VERSION = '9.2.0';
6+
const PACKAGE_VERSION = '9.3.0';

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: 9.2.0
4+
version: 9.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: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1-
## Upcoming
1+
## 9.3.0
22

33
✅ Added
44

55
- Added support for `voiceRecording` type attachments.
66

7+
🔄 Changed
8+
9+
- Deprecated `PlayListItem` in favor of `PlaylistTrack`.
10+
- Deprecated `StreamVoiceRecordingListPlayer` in favor of `StreamVoiceRecordingAttachmentPlaylist`.
11+
- Deprecated `StreamVoiceRecordingLoading` as it is no longer used.
12+
- Deprecated `StreamVoiceRecordingPlayer` in favor of `StreamVoiceRecordingAttachment`.
13+
- Deprecated `StreamVoiceRecordingSlider` in favor of `StreamAudioWaveformSlider`.
14+
- Deprecated `VoiceRecordingAttachmentBuilder` in favor of `VoiceRecordingAttachmentPlaylistBuilder`.
15+
- Deprecated `StreamVoiceRecordingTheme` in favor of `StreamVoiceRecordingAttachmentTheme`.
16+
717
## 9.2.0+1
818

919
- Remove untracked files from the package.

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: ^9.2.0+1
29-
stream_chat_localizations: ^9.2.0
30-
stream_chat_persistence: ^9.2.0
28+
stream_chat_flutter: ^9.3.0
29+
stream_chat_localizations: ^9.3.0
30+
stream_chat_persistence: ^9.3.0
3131

3232
flutter:
3333
uses-material-design: true

packages/stream_chat_flutter/pubspec.yaml

Lines changed: 2 additions & 2 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: 9.2.0+1
4+
version: 9.3.0
55
repository: https://github.com/GetStream/stream-chat-flutter
66
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
77

@@ -56,7 +56,7 @@ dependencies:
5656
rxdart: ^0.28.0
5757
share_plus: ^10.0.2
5858
shimmer: ^3.0.0
59-
stream_chat_flutter_core: ^9.2.0
59+
stream_chat_flutter_core: ^9.3.0
6060
svg_icon_widget: ^0.0.1
6161
synchronized: ^3.1.0+1
6262
thumblr: ^0.0.4

packages/stream_chat_flutter_core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 9.3.0
2+
3+
- Updated `stream_chat` dependency to [`9.3.0`](https://pub.dev/packages/stream_chat/changelog).
4+
15
## 9.2.0
26

37
- Updated `stream_chat` dependency to [`9.2.0`](https://pub.dev/packages/stream_chat/changelog).

packages/stream_chat_flutter_core/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies:
2323
cupertino_icons: ^1.0.3
2424
flutter:
2525
sdk: flutter
26-
stream_chat_flutter_core: ^9.2.0
26+
stream_chat_flutter_core: ^9.3.0
2727

2828
flutter:
2929
uses-material-design: true

0 commit comments

Comments
 (0)