Skip to content

Commit be4ba16

Browse files
authored
Release v0.10.1 (#1028)
1 parent e709178 commit be4ba16

File tree

14 files changed

+33
-25
lines changed

14 files changed

+33
-25
lines changed

dogfooding/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_dogfooding
2-
version: 1.10.0+1
2+
version: 1.10.1+1
33
publish_to: none
44
description: Flutter Dogfooding App to showcase Video SDK.
55

@@ -37,10 +37,10 @@ dependencies:
3737
share_plus: ^11.0.0
3838
shared_preferences: ^2.3.2
3939
stream_chat_flutter: ^9.8.0
40-
stream_video_flutter: ^0.10.0
41-
stream_video_push_notification: ^0.10.0
42-
stream_video_screen_sharing: ^0.10.0
43-
stream_video_noise_cancellation: ^0.10.0
40+
stream_video_flutter: ^0.10.1
41+
stream_video_push_notification: ^0.10.1
42+
stream_video_screen_sharing: ^0.10.1
43+
stream_video_noise_cancellation: ^0.10.1
4444

4545
dependency_overrides:
4646
just_audio_web: ^0.4.13

melos.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ command:
2323
share_plus: ^11.0.0
2424
stream_chat_flutter: ^9.8.0
2525
stream_webrtc_flutter: ^1.0.9
26-
stream_video: ^0.10.0
27-
stream_video_flutter: ^0.10.0
28-
stream_video_noise_cancellation: ^0.10.0
29-
stream_video_push_notification: ^0.10.0
30-
stream_video_screen_sharing: ^0.10.0
26+
stream_video: ^0.10.1
27+
stream_video_flutter: ^0.10.1
28+
stream_video_noise_cancellation: ^0.10.1
29+
stream_video_push_notification: ^0.10.1
30+
stream_video_screen_sharing: ^0.10.1
3131

3232
scripts:
3333
postclean:

packages/stream_video/CHANGELOG.md

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

33
✅ Added
44
* Added support for customization of display name for ringing notifications by providing `display_name` custom data to the call. See the [documentation](https://getstream.io/video/docs/flutter/advanced/incoming-calls/customization/#display-name-customization) for details.

packages/stream_video/lib/globals.dart

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

33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.10.0';
4+
const String streamVideoVersion = '0.10.1';
55
const String openapiModelsVersion = '180.1.0';
66
const String protocolModelsVersion = '1.38.0';
77
const String androidWebRTCVersion = '1.3.8';

packages/stream_video/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video
22
description: The Official Low-level Client for Stream Video, a service for
33
building video calls, audio rooms, and live-streaming applications.
4-
version: 0.10.0
4+
version: 0.10.1
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
## Unreleased
1+
## 0.10.1
22

33
🐞 Fixed
44
* (iOS) Fixed Picture-in-Picture (PiP) issue where remote participants joining during active PiP mode would not have their video tracks displayed properly.
55
* (iOS) Fixed a visual issue where the Picture-in-Picture view displayed an empty container when participant name and microphone indicator settings were disabled.
6+
* Fixed an issue where the last reaction was removed too fast when a user sends multiple reactions quickly after each other.
67
* Fixed an issue where toggling camera enabled quickly could cause AVCaptureMultiCamSession to crash.
8+
* Fixed an issue where the default camera selection would occasionally be incorrect even when properly configured.
79
* Fixed an issue where changing the audio input device while muted from the start of a call would not apply the new device when unmuting. The selected device will now be correctly set upon unmuting.
810

911
✅ Added

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ dependencies:
2727
path_provider: ^2.1.0
2828
share_plus: ^11.0.0
2929
shared_preferences: ^2.2.0
30-
stream_video: ^0.10.0
31-
stream_video_flutter: ^0.10.0
32-
stream_video_push_notification: ^0.10.0
30+
stream_video: ^0.10.1
31+
stream_video_flutter: ^0.10.1
32+
stream_video_push_notification: ^0.10.1
3333
stream_webrtc_flutter: ^1.0.9
3434

3535
dependency_overrides:

packages/stream_video_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_flutter
22
description: The Official UI package for Stream Video, a service for building
33
video calls, audio rooms, and live-streaming applications.
4-
version: 0.10.0
4+
version: 0.10.1
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
@@ -22,7 +22,7 @@ dependencies:
2222
permission_handler: ^12.0.0+1
2323
plugin_platform_interface: ^2.1.8
2424
rate_limiter: ^1.0.0
25-
stream_video: ^0.10.0
25+
stream_video: ^0.10.1
2626
stream_webrtc_flutter: ^1.0.9
2727
visibility_detector: ^0.4.0+2
2828

packages/stream_video_noise_cancellation/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.10.1
2+
* Sync version with `stream_video_flutter` 0.10.1
3+
14
## 0.10.0
25
* Sync version with `stream_video_flutter` 0.10.0
36

packages/stream_video_noise_cancellation/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_video_noise_cancellation
22
description: The Official package for Stream Video, providing noise cancellation feature for video and audio calls.
3-
version: 0.10.0
3+
version: 0.10.1
44
homepage: https://getstream.io/video/
55
repository: https://github.com/GetStream/stream-video-flutter
66
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
@@ -13,7 +13,7 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
plugin_platform_interface: ^2.0.2
16-
stream_video: ^0.10.0
16+
stream_video: ^0.10.1
1717
stream_webrtc_flutter: ^1.0.9
1818

1919
dev_dependencies:

0 commit comments

Comments
 (0)