Skip to content

Commit 6d85ab4

Browse files
authored
release v0.2.0 changes (#526)
1 parent 0131624 commit 6d85ab4

File tree

11 files changed

+47
-15
lines changed

11 files changed

+47
-15
lines changed

dogfooding/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dependencies:
2828
share_plus: ^7.1.0
2929
shared_preferences: ^2.2.0
3030
stream_chat_flutter: ^6.11.0
31-
stream_video_flutter: ^0.1.1
32-
stream_video_push_notification: ^0.1.1
31+
stream_video_flutter: ^0.2.0
32+
stream_video_push_notification: ^0.2.0
3333
uni_links: ^0.5.1
3434

3535
dev_dependencies:

packages/stream_video/CHANGELOG.md

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

33
✅ Added
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
3-
const String streamVideoVersion = '0.1.1';
3+
const String streamVideoVersion = '0.2.0';

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.1.1
4+
version: 0.2.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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 0.2.0
2+
3+
✅ Added
4+
5+
* `removeMembers` and `updateCallMembers` to `Call`
6+
* `incomingCallerNameOverride` and `incomingCallerHandlerOverride` to `StreamVideoPushParams` to allow customization of CallKit call screen
7+
* `participantsAvatarBuilder` and `participantsDisplayNameBuilder` to `StreamOutgoingCallContent` and `StreamIncomingCallContent` to allow customiztion of Incoming and Outgoing call screens
8+
9+
Example usage:
10+
```dart
11+
StreamCallContainer(
12+
...
13+
outgoingCallBuilder: (context, call, callState) =>
14+
StreamOutgoingCallContent(
15+
call: call,
16+
callState: callState,
17+
participantsDisplayNameBuilder:
18+
(context, call, callState, participants) => your widget here,
19+
),
20+
)
21+
```
22+
23+
🔄 Changed
24+
25+
Breaking changes 🚧
26+
* renamed `inviteUsers` to `addMembers` in `Call`
27+
* renamed parameter name in `getOrCreateCall` from `participantIds` to `memberIds`
28+
129
## 0.1.1
230

331
* Fixed call join bug

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ dependencies:
2424
intl: ^0.18.1
2525
path_provider: ^2.1.0
2626
share_plus: ^7.1.0
27-
stream_video: ^0.1.1
28-
stream_video_flutter: ^0.1.1
29-
stream_video_flutter_background: ^0.1.1
27+
stream_video: ^0.2.0
28+
stream_video_flutter: ^0.2.0
29+
stream_video_flutter_background: ^0.2.0
3030

3131
dev_dependencies:
3232
build_runner: ^2.4.6

packages/stream_video_flutter/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_video_flutter
22
description: The Official UI package for Stream Video, a service for building video calls, audio rooms, and live-streaming applications.
3-
version: 0.1.1
3+
version: 0.2.0
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
@@ -16,8 +16,8 @@ dependencies:
1616
sdk: flutter
1717
flutter_webrtc: ^0.9.40
1818
rate_limiter: ^1.0.0
19-
stream_video: ^0.1.1
20-
stream_video_flutter_background: ^0.1.1
19+
stream_video: ^0.2.0
20+
stream_video_flutter_background: ^0.2.0
2121
visibility_detector: ^0.4.0+2
2222

2323
dev_dependencies:

packages/stream_video_flutter_background/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0
2+
3+
* Aligned version with other Stream Video packages
4+
15
## 0.1.1
26

37
* Aligned version with other Stream Video packages

packages/stream_video_flutter_background/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_video_flutter_background
22
description: Adds background support for Stream Video SDK, a service for building video calls, audio rooms, and live-streaming applications.
3-
version: 0.1.1
3+
version: 0.2.0
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

packages/stream_video_push_notification/CHANGELOG.md

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

33
✅ Added
44

0 commit comments

Comments
 (0)