Skip to content

Commit 709428d

Browse files
authored
Release v0.9.1 (#929)
* Release v0.9.1 * pana noise cancellation fix * changelog fix * tweak
1 parent 66d7059 commit 709428d

File tree

18 files changed

+53
-28
lines changed

18 files changed

+53
-28
lines changed

.github/actions/pana/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ runs:
2626
cmd: |
2727
yq eval '.dependencies.stream_video = {"path": "../stream_video"}' -i packages/stream_video_flutter/pubspec.yaml
2828
yq eval '.dependencies.stream_video = {"path": "../stream_video"}' -i packages/stream_video_push_notification/pubspec.yaml
29-
29+
yq eval '.dependencies.stream_video = {"path": "../stream_video"}' -i packages/stream_video_noise_cancellation/pubspec.yaml
30+
3031
- name: Install Flutter
3132
uses: subosito/flutter-action@v2
3233
with:
@@ -47,4 +48,4 @@ runs:
4748
PANA=$(pana . --no-warning); PANA_SCORE=$(echo $PANA | sed -n "s/.*Points: \([0-9]*\)\/\([0-9]*\)./\1\/\2/p")
4849
echo "Score: $PANA_SCORE"
4950
IFS='/'; read -a SCORE_ARR <<< "$PANA_SCORE"; SCORE=SCORE_ARR[0];
50-
if (( $SCORE < ${{inputs.min_score}} )); then echo "The minimum score of ${{inputs.min_score}} was not met!"; exit 1; fi
51+
if (( $SCORE < ${{inputs.min_score}} )); then echo "The minimum score of ${{inputs.min_score}} was not met!"; exit 1; fi

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.0+1
2+
version: 1.9.1+1
33
publish_to: none
44
description: Flutter Dogfooding App to showcase Video SDK.
55

@@ -34,10 +34,10 @@ dependencies:
3434
share_plus: ^10.0.2
3535
shared_preferences: ^2.3.2
3636
stream_chat_flutter: ^9.6.0
37-
stream_video_flutter: ^0.9.0
38-
stream_video_push_notification: ^0.9.0
39-
stream_video_screen_sharing: ^0.9.0
40-
stream_video_noise_cancellation: ^0.9.0
37+
stream_video_flutter: ^0.9.1
38+
stream_video_push_notification: ^0.9.1
39+
stream_video_screen_sharing: ^0.9.1
40+
stream_video_noise_cancellation: ^0.9.1
4141

4242
dependency_overrides:
4343
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
## Unreleased
1+
## 0.9.1
22

33
✅ Added
4-
* Added camera focus and zoom control features:
5-
* New `Call.setZoom()` method that allows adjusting camera zoom level.
6-
* New `Call.focus()` method that enables setting focus and exposure points on the camera.
4+
* Introduced camera focus and zoom control features:
5+
* New `Call.setZoom()` method to adjust the camera’s zoom level.
6+
* New `Call.focus()` method for setting focus and exposure points on the camera.
7+
8+
🐞 Fixed
9+
* [Android] Fixes the device orientation detection when screen-sharing on some Android devices.
10+
* Addressed minor bugs and improved performance.
711

812
## 0.9.0
913

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.0';
4+
const String streamVideoVersion = '0.9.1';
55
const String androidWebRTCVersion = '1.3.8';
66
const String iosWebRTCVersion = '125.6422.65';
77

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.0
4+
version: 0.9.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: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.9.1
2+
3+
✅ Added
4+
* Introduced camera focus and zoom control features:
5+
* New `Call.setZoom()` method to adjust the camera’s zoom level.
6+
* New `Call.focus()` method for setting focus and exposure points on the camera.
7+
8+
🐞 Fixed
9+
* [Android] Fixes the device orientation detection when screen-sharing on some Android devices.
10+
* Addressed minor bugs and improved performance.
11+
112
## 0.9.0
213

314
✅ Added
@@ -546,4 +557,4 @@ Breaking changes 🚧
546557

547558
## 0.0.1
548559

549-
* Initial beta release of Stream Video 🚀
560+
* Initial beta release of Stream Video 🚀

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: ^10.0.2
2929
shared_preferences: ^2.2.0
30-
stream_video: ^0.9.0
31-
stream_video_flutter: ^0.9.0
32-
stream_video_push_notification: ^0.9.0
30+
stream_video: ^0.9.1
31+
stream_video_flutter: ^0.9.1
32+
stream_video_push_notification: ^0.9.1
3333
stream_webrtc_flutter: ^1.0.2
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.0'
7+
s.version = '0.9.1'
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.0
4+
version: 0.9.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
@@ -23,7 +23,7 @@ dependencies:
2323
permission_handler: ^11.3.1
2424
plugin_platform_interface: ^2.1.8
2525
rate_limiter: ^1.0.0
26-
stream_video: ^0.9.0
26+
stream_video: ^0.9.1
2727
stream_webrtc_flutter: ^1.0.2
2828
visibility_detector: ^0.4.0+2
2929

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.1
2+
* Sync version with `stream_video_flutter` 0.9.1
3+
14
## 0.9.0
25

36
✅ Added

0 commit comments

Comments
 (0)