Skip to content

Commit 7ca6f77

Browse files
authored
Release v0.9.5 (#981)
* Release v0.9.5 * globals fix
1 parent f529cca commit 7ca6f77

File tree

18 files changed

+49
-22
lines changed

18 files changed

+49
-22
lines changed

dogfooding/lib/screens/home_screen.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// 🎯 Dart imports:
22
import 'dart:async';
3-
import 'dart:io';
43
import 'dart:math' as math;
54

65
// 🐦 Flutter imports:

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.9.4+1
2+
version: 1.9.5+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.9.4
41-
stream_video_push_notification: ^0.9.4
42-
stream_video_screen_sharing: ^0.9.4
43-
stream_video_noise_cancellation: ^0.9.4
40+
stream_video_flutter: ^0.9.5
41+
stream_video_push_notification: ^0.9.5
42+
stream_video_screen_sharing: ^0.9.5
43+
stream_video_noise_cancellation: ^0.9.5
4444

4545
dependency_overrides:
4646
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.9.5
2+
3+
✅ Added
4+
* Introduced `allowMultipleActiveCalls` option in `StreamVideoOptions` enabling support for concurrent active calls. See the [documentation](https://getstream.io/video/docs/flutter/ui-cookbook/multiple-simultaneous-calls-support/) for details.
5+
6+
🐞 Fixed
7+
* Enhanced permission update handling to only process events targeting the current user.
8+
* Improved audio output device selection to prioritize external audio devices during call connection.
9+
110
## 0.9.4
211

312
* Sync version with `stream_video_flutter` 0.9.4

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.9.4';
4+
const String streamVideoVersion = '0.9.5';
55
const String openapiModelsVersion = '167.9.1';
66
const String protocolModelsVersion = '1.35.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.9.4
4+
version: 0.9.5
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.9.5
2+
3+
✅ Added
4+
* Introduced `extendBody` parameter in `StreamCallContent` that extends the participants view to the bottom edge of the scaffold when enabled.
5+
* Introduced `allowMultipleActiveCalls` option in `StreamVideoOptions` enabling support for concurrent active calls. See the [documentation](https://getstream.io/video/docs/flutter/ui-cookbook/multiple-simultaneous-calls-support/) for details.
6+
7+
🐞 Fixed
8+
* Enhanced permission update handling to only process events targeting the current user.
9+
* Improved audio output device selection to prioritize external audio devices during call connection.
10+
111
## 0.9.4
212

313
🐞 Fixed

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.9.4
31-
stream_video_flutter: ^0.9.4
32-
stream_video_push_notification: ^0.9.4
30+
stream_video: ^0.9.5
31+
stream_video_flutter: ^0.9.5
32+
stream_video_push_notification: ^0.9.5
3333
stream_webrtc_flutter: ^1.0.6
3434

3535
dependency_overrides:

packages/stream_video_flutter/ios/stream_video_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_flutter'
7-
s.version = '0.9.4'
7+
s.version = '0.9.5'
88
s.summary = 'Official Flutter Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Flutter Plugin for Stream Video..

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.9.4
4+
version: 0.9.5
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.9.4
25+
stream_video: ^0.9.5
2626
stream_webrtc_flutter: ^1.0.6
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.9.5
2+
* Sync version with `stream_video_flutter` 0.9.5
3+
14
## 0.9.4
25
* Sync version with `stream_video_flutter` 0.9.4
36

packages/stream_video_noise_cancellation/ios/stream_video_noise_cancellation.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_noise_cancellation'
7-
s.version = '0.9.4'
7+
s.version = '0.9.5'
88
s.summary = 'Official Noise Cancellation Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Noise Cancellation Plugin for Stream Video.

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.9.4
3+
version: 0.9.5
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.9.4
16+
stream_video: ^0.9.5
1717
stream_webrtc_flutter: ^1.0.6
1818

1919
dev_dependencies:

packages/stream_video_push_notification/CHANGELOG.md

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

packages/stream_video_push_notification/ios/stream_video_push_notification.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_push_notification'
7-
s.version = '0.9.4'
7+
s.version = '0.9.5'
88
s.summary = 'Official Push Notification Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Push Notification Plugin for Stream Video.

packages/stream_video_push_notification/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_push_notification
22
description: Adds push notification support for Stream Video, a service for
33
building video calls, audio rooms, and live-streaming applications.
4-
version: 0.9.4
4+
version: 0.9.5
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
@@ -21,7 +21,7 @@ dependencies:
2121
meta: ^1.9.1
2222
plugin_platform_interface: ^2.1.8
2323
rxdart: ^0.28.0
24-
stream_video: ^0.9.4
24+
stream_video: ^0.9.5
2525
uuid: ^4.2.1
2626
shared_preferences: ^2.3.2
2727
stream_webrtc_flutter: ^1.0.6

packages/stream_video_screen_sharing/CHANGELOG.md

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

packages/stream_video_screen_sharing/ios/stream_video_screen_sharing.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_screen_sharing'
7-
s.version = '0.9.4'
7+
s.version = '0.9.5'
88
s.summary = 'Official Screen Sharing Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Screen Sharing Plugin for Stream Video.

packages/stream_video_screen_sharing/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: stream_video_screen_sharing
22
description: >
33
Official Screen Sharing Plugin for Stream Video Flutter that enables sharing device screens
44
during video calls.
5-
version: 0.9.4
5+
version: 0.9.5
66
homepage: https://getstream.io/video/
77
repository: https://github.com/GetStream/stream-video-flutter
88
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

0 commit comments

Comments
 (0)