Skip to content

Commit

Permalink
Release v0.5.5 (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brazol authored Oct 15, 2024
1 parent 6c59922 commit 8bf6204
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 18 deletions.
6 changes: 3 additions & 3 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ dependencies:
share_plus: ^10.0.2
shared_preferences: ^2.3.2
stream_chat_flutter: ^8.1.0
stream_video_flutter: ^0.5.4
stream_video_push_notification: ^0.5.4
stream_video_screen_sharing: ^0.5.4
stream_video_flutter: ^0.5.5
stream_video_push_notification: ^0.5.5
stream_video_screen_sharing: ^0.5.5
uni_links: ^0.5.1

dependency_overrides:
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 0.5.5

🐞 Fixed
* Migrated from `internet_connection_checker` to `internet_connection_checker_plus` due to [license issues](https://github.com/github/dmca/blob/master/2024/09/2024-09-04-internet-connection-checker-plus.md)
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/src/call/call.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import 'dart:typed_data';
import 'package:collection/collection.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter_webrtc/flutter_webrtc.dart';
import 'package:internet_connection_checker_plus/internet_connection_checker_plus.dart';
import 'package:meta/meta.dart';
import 'package:rxdart/rxdart.dart';
import 'package:internet_connection_checker_plus/internet_connection_checker_plus.dart';

import '../../stream_video.dart';
import '../../version.g.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'package:meta/meta.dart';
import '../../sdp.dart';

@internal
// ignore: one_member_abstracts
abstract class SdpEditAction {
const SdpEditAction();

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/version.g.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is generated. Do not manually edit.
/// Current package version.
const String streamVideoVersion = '0.5.4';
const String streamVideoVersion = '0.5.5';
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
const String iosWebRTCVersion = 'libwebrtc-m125.6422.04';
2 changes: 1 addition & 1 deletion packages/stream_video/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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.5.4
version: 0.5.5
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand Down
6 changes: 4 additions & 2 deletions packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## Unreleased
## 0.5.5

🐞 Fixed
* Migrated from `internet_connection_checker` to `internet_connection_checker_plus` due to [license issues](https://github.com/github/dmca/blob/master/2024/09/2024-09-04-internet-connection-checker-plus.md)
* Migrated from `internet_connection_checker` to `internet_connection_checker_plus` due to [license issues](https://github.com/github/dmca/blob/master/2024/09/2024-09-04-internet-connection-checker-plus.md).
* `callAppBarBuilder` in `StreamCallContent` can now return null in order to hide the app bar.
* `backgroundColor` field in `StreamCallControls` is now correctly applied.

## 0.5.4

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video_flutter/example/lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import 'dart:async';
import 'dart:convert';

import 'package:example/stream_video_sdk.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/material.dart';
Expand All @@ -15,6 +14,7 @@ import 'package:stream_video_flutter/stream_video_flutter.dart';
import 'core/auth_repository.dart';
import 'firebase_options.dart';
import 'screen/login_screen.dart';
import 'stream_video_sdk.dart';

// As this runs in a separate isolate, we need to setup the app again.
@pragma('vm:entry-point')
Expand Down
6 changes: 3 additions & 3 deletions packages/stream_video_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ dependencies:
path_provider: ^2.1.0
share_plus: ^10.0.2
shared_preferences: ^2.2.0
stream_video: ^0.5.4
stream_video_flutter: ^0.5.4
stream_video_push_notification: ^0.5.4
stream_video: ^0.5.5
stream_video_flutter: ^0.5.5
stream_video_push_notification: ^0.5.5

dependency_overrides:
stream_video:
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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.5.4
version: 0.5.5
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand All @@ -20,7 +20,7 @@ dependencies:
permission_handler: ^11.3.1
plugin_platform_interface: ^2.1.8
rate_limiter: ^1.0.0
stream_video: ^0.5.4
stream_video: ^0.5.5
visibility_detector: ^0.4.0+2

dependency_overrides:
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_push_notification/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.5.5
* Sync version with `stream_video_flutter` 0.5.5

## 0.5.4

* Dependency updates
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_push_notification/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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.5.4
version: 0.5.5
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand All @@ -22,7 +22,7 @@ dependencies:
meta: ^1.9.1
plugin_platform_interface: ^2.1.8
rxdart: ^0.28.0
stream_video: ^0.5.4
stream_video: ^0.5.5
uuid: ^4.2.1

dev_dependencies:
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_screen_sharing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.5.5
* Sync version with `stream_video_flutter` 0.5.5

## 0.5.4
* **Flutter SDK** constraint updated to >=3.22.0 (**Dart SDK** to >=3.4.0 <4.0.0)

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video_screen_sharing/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stream_video_screen_sharing
description: "Official Screen Sharing Plugin for Stream Video Flutter."
version: 0.5.4
version: 0.5.5
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand Down

0 comments on commit 8bf6204

Please sign in to comment.