Skip to content

Commit 2fd8ccc

Browse files
authored
Release v0.7.0 (#825)
1 parent f1e56fa commit 2fd8ccc

File tree

11 files changed

+31
-24
lines changed

11 files changed

+31
-24
lines changed

dogfooding/pubspec.yaml

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

@@ -34,9 +34,9 @@ dependencies:
3434
share_plus: ^10.0.2
3535
shared_preferences: ^2.3.2
3636
stream_chat_flutter: ^9.0.0
37-
stream_video_flutter: ^0.6.1
38-
stream_video_push_notification: ^0.6.1
39-
stream_video_screen_sharing: ^0.6.1
37+
stream_video_flutter: ^0.7.0
38+
stream_video_push_notification: ^0.7.0
39+
stream_video_screen_sharing: ^0.7.0
4040

4141
dependency_overrides:
4242
wakelock_plus: ^1.2.9

packages/stream_video/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased
1+
## 0.7.0
22

33
🚧 Breaking changes
44
* The package is now compatible with Gradle 8. The minimum required Java version is now 17.
@@ -14,6 +14,7 @@
1414
* Learn More:
1515
* Check the [guide](https://getstream.io/video/docs/flutter/closed-captions/) for integration steps.
1616
* Explore the [cookbook](https://getstream.io/video/docs/flutter/ui-cookbook/closed-captions/) for UI tips.
17+
* Dynamic codec negotiation during calls.
1718

1819
## 0.6.1
1920

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.6.1';
4+
const String streamVideoVersion = '0.7.0';
55
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
66
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';

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.6.1
4+
version: 0.7.0
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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
## Unreleased
1+
## 0.7.0
22

33
🚧 Breaking changes
4-
* https://github.com/GetStream/stream-video-flutter/pull/820: The package is now compatible with Gradle 8. The minimum required Java version is now 17.
5-
* https://github.com/GetStream/stream-video-flutter/pull/820: Updated the `flutter_callkit_incoming` package to version 2.5.0, which also requires Java 17.
4+
* The package is now compatible with Gradle 8. The minimum required Java version is now 17. https://github.com/GetStream/stream-video-flutter/pull/820
5+
* Updated the `flutter_callkit_incoming` package to version 2.5.0, which also requires Java 17. https://github.com/GetStream/stream-video-flutter/pull/820
66
* The `resolution` parameter of `Call.setPreferredIncomingVideoResolution()` method changed type from `VideoResolution` to `VideoDimension`.
77
* The `Call.onPermissionRequest` callback changed the event type passed as an argument from `CoordinatorCallPermissionRequestEvent` to `StreamCallPermissionRequestEvent`
88

99
✅ Added
10-
* https://github.com/GetStream/stream-video-flutter/pull/799: Added out-of-the-box support for blur background filters and image filters. As well as the option to create custom video filters. For complete documentation of those features please check [here.](https://getstream.io/video/docs/flutter/advanced/apply-video-filters/)
11-
* https://github.com/GetStream/stream-video-flutter/pull/796: Added support for Closed Captions:
10+
* Added out-of-the-box support for blur background filters and image filters. As well as the option to create custom video filters. For complete documentation of those features please check [here.](https://getstream.io/video/docs/flutter/advanced/apply-video-filters/) https://github.com/GetStream/stream-video-flutter/pull/799
11+
* Added support for Closed Captions. https://github.com/GetStream/stream-video-flutter/pull/796
1212
* Listen to the `Call.closedCaptions` stream to overlay captions during your call.
1313
* Use `CallPreferences` to configure:
1414
* `closedCaptionsVisibilityDurationMs` for controlling how long captions are displayed.
@@ -17,11 +17,11 @@
1717
* Learn More:
1818
* Check the [guide](https://getstream.io/video/docs/flutter/closed-captions/) for integration steps.
1919
* Explore the [cookbook](https://getstream.io/video/docs/flutter/ui-cookbook/closed-captions/) for UI tips.
20-
* https://github.com/GetStream/stream-video-flutter/pull/811: Dynamic codec negotiation during calls
20+
* Dynamic codec negotiation during calls. https://github.com/GetStream/stream-video-flutter/pull/811
2121

2222
🐞 Fixed
23-
* https://github.com/GetStream/stream-video-flutter/pull/822: Fixed issues when ending the call while in Picture in Picture mode on Android.
24-
* https://github.com/GetStream/stream-video-flutter/pull/824: Fixes rejecting ringing call when CallEnd, instead of CallDecline, event is triggered by CallKit during ringing.
23+
* Fixed issues when ending the call while in Picture in Picture mode on Android. https://github.com/GetStream/stream-video-flutter/pull/822
24+
* Fixes rejecting ringing call when CallEnd, instead of CallDecline, event is triggered by CallKit during ringing. https://github.com/GetStream/stream-video-flutter/pull/824
2525

2626
## 0.6.1
2727

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.6.1
31-
stream_video_flutter: ^0.6.1
32-
stream_video_push_notification: ^0.6.1
30+
stream_video: ^0.7.0
31+
stream_video_flutter: ^0.7.0
32+
stream_video_push_notification: ^0.7.0
3333
stream_webrtc_flutter: ^0.12.5+1
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.6.1
4+
version: 0.7.0
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
@@ -20,7 +20,7 @@ dependencies:
2020
permission_handler: ^11.3.1
2121
plugin_platform_interface: ^2.1.8
2222
rate_limiter: ^1.0.0
23-
stream_video: ^0.6.0
23+
stream_video: ^0.7.0
2424
stream_webrtc_flutter: ^0.12.5+1
2525
visibility_detector: ^0.4.0+2
2626

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
## Unreleased
1+
## 0.7.0
22

33
🚧 Breaking changes
44

55
* The package is now compatible with Gradle 8. The minimum required Java version is now 17.
66
* Updated the `flutter_callkit_incoming` package to version 2.5.0, which also requires Java 17.
77

8+
🐞 Fixed
9+
* Fixes rejecting ringing call when CallEnd, instead of CallDecline, event is triggered by CallKit during ringing.
10+
811
## 0.6.1
912

1013
* Updated minimum Flutter version to 3.24.5

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.6.1
4+
version: 0.7.0
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.6.1
24+
stream_video: ^0.7.0
2525
uuid: ^4.2.1
2626
shared_preferences: ^2.3.2
2727
stream_webrtc_flutter: ^0.12.5+1

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.7.0
2+
* Sync version with `stream_video_flutter` 0.7.0
3+
14
## 0.6.1
25
* Updated minimum Flutter version to 3.24.5
36

0 commit comments

Comments
 (0)