diff --git a/dogfooding/pubspec.yaml b/dogfooding/pubspec.yaml index e706abe0c..729eb9abf 100644 --- a/dogfooding/pubspec.yaml +++ b/dogfooding/pubspec.yaml @@ -28,8 +28,8 @@ dependencies: share_plus: ^7.1.0 shared_preferences: ^2.2.0 stream_chat_flutter: ^6.9.0 - stream_video_flutter: ^0.0.4 - stream_video_push_notification: ^0.0.4 + stream_video_flutter: ^0.1.0 + stream_video_push_notification: ^0.1.0 uni_links: ^0.5.1 dev_dependencies: diff --git a/packages/stream_video/CHANGELOG.md b/packages/stream_video/CHANGELOG.md index a2d2d8e69..93c5d957f 100644 --- a/packages/stream_video/CHANGELOG.md +++ b/packages/stream_video/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.0 + +* Aligned SDK initialization with other SDKs +* Fixed callkit and push implementation for SDK +* Added parsing for CallPermissions +* Fix duplicate participants in call +* General bug fixes and improvements + ## 0.0.3 * Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 diff --git a/packages/stream_video/lib/version.g.dart b/packages/stream_video/lib/version.g.dart index 81c6b9d76..f73204347 100644 --- a/packages/stream_video/lib/version.g.dart +++ b/packages/stream_video/lib/version.g.dart @@ -1,3 +1,3 @@ // This file is generated. Do not manually edit. /// Current package version. -const String streamVideoVersion = '0.0.3'; +const String streamVideoVersion = '0.1.0'; diff --git a/packages/stream_video/pubspec.yaml b/packages/stream_video/pubspec.yaml index 408556ac1..bc044fa60 100644 --- a/packages/stream_video/pubspec.yaml +++ b/packages/stream_video/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_video description: The Official Low-level Client for Stream Video, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.0.3 +version: 0.1.0 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues diff --git a/packages/stream_video_flutter/CHANGELOG.md b/packages/stream_video_flutter/CHANGELOG.md index 12060e68a..ea6477aab 100644 --- a/packages/stream_video_flutter/CHANGELOG.md +++ b/packages/stream_video_flutter/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.1.0 + +* Aligned SDK initialization with other SDKs +* Fixed callkit and push implementation for SDK +* Added parsing for CallPermissions +* Fix duplicate participants in call +* Hide debug stats in production +* Display call participants in lobby view +* General bug fixes and improvements + ## 0.0.4 * Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 diff --git a/packages/stream_video_flutter/example/pubspec.yaml b/packages/stream_video_flutter/example/pubspec.yaml index d919548d1..f41624502 100644 --- a/packages/stream_video_flutter/example/pubspec.yaml +++ b/packages/stream_video_flutter/example/pubspec.yaml @@ -40,8 +40,8 @@ dependencies: share_plus: ^7.1.0 device_info_plus: ^9.0.3 intl: ^0.18.1 - stream_video_flutter: ^0.0.4 - stream_video_flutter_background: 0.0.2 + stream_video_flutter: ^0.1.0 + stream_video_flutter_background: 0.1.0 envied: ^0.3.0+3 # The following adds the Cupertino Icons font to your application. diff --git a/packages/stream_video_flutter/pubspec.yaml b/packages/stream_video_flutter/pubspec.yaml index 9689f1a06..9716f0fc2 100644 --- a/packages/stream_video_flutter/pubspec.yaml +++ b/packages/stream_video_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_video_flutter description: The Official UI package for Stream Video, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.0.4 +version: 0.1.0 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues @@ -16,8 +16,8 @@ dependencies: sdk: flutter flutter_webrtc: ^0.9.40 rate_limiter: ^1.0.0 - stream_video: ^0.0.3 - stream_video_flutter_background: ^0.0.2 + stream_video: ^0.1.0 + stream_video_flutter_background: ^0.1.0 visibility_detector: ^0.4.0+2 dev_dependencies: diff --git a/packages/stream_video_flutter_background/CHANGELOG.md b/packages/stream_video_flutter_background/CHANGELOG.md index 602ddc4e0..200b1e6a5 100644 --- a/packages/stream_video_flutter_background/CHANGELOG.md +++ b/packages/stream_video_flutter_background/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.0 + +* Aligned version with other Stream Video packages + ## 0.0.2 * Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 diff --git a/packages/stream_video_flutter_background/pubspec.yaml b/packages/stream_video_flutter_background/pubspec.yaml index ff2c62b65..0a4fc77b3 100644 --- a/packages/stream_video_flutter_background/pubspec.yaml +++ b/packages/stream_video_flutter_background/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_video_flutter_background description: Adds background support for Stream Video SDK, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.0.2 +version: 0.1.0 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues diff --git a/packages/stream_video_push_notification/CHANGELOG.md b/packages/stream_video_push_notification/CHANGELOG.md index cc0747867..fc52894ae 100644 --- a/packages/stream_video_push_notification/CHANGELOG.md +++ b/packages/stream_video_push_notification/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.1.0 + +* Added helper class for iOS native push initialization +* Fixes for iOS CallKit implementation +* Fixes for Android ringing implementation +* Added event listeners for call state changes + ## 0.0.4 * Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 diff --git a/packages/stream_video_push_notification/pubspec.yaml b/packages/stream_video_push_notification/pubspec.yaml index f68e16b42..066a26097 100644 --- a/packages/stream_video_push_notification/pubspec.yaml +++ b/packages/stream_video_push_notification/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_video_push_notification description: Adds push notification support for Stream Video, a service for building video calls, audio rooms, and live-streaming applications. -version: 0.0.4 +version: 0.1.0 homepage: https://getstream.io/video/ repository: https://github.com/GetStream/stream-video-flutter issue_tracker: https://github.com/GetStream/stream-video-flutter/issues @@ -13,7 +13,7 @@ dependencies: flutter: sdk: flutter firebase_messaging: ^14.6.6 - stream_video: ^0.0.3 + stream_video: ^0.1.0 flutter_callkit_incoming: ^2.0.0+1 uuid: ^3.0.7 rxdart: ^0.27.7 @@ -42,6 +42,8 @@ flutter: platforms: ios: pluginClass: StreamVideoPushNotificationPlugin + android: + default_package: stream_video_push_notification topics: - video