diff --git a/.changes/fix-dart313-flow-analysis b/.changes/fix-dart313-flow-analysis deleted file mode 100644 index bc5c5094c..000000000 --- a/.changes/fix-dart313-flow-analysis +++ /dev/null @@ -1 +0,0 @@ -patch type="fixed" "Fix compile errors on Dart 3.13 where nullable publish options are no longer promoted across await" diff --git a/.changes/fix-data-stream-size b/.changes/fix-data-stream-size deleted file mode 100644 index 22dfe95d5..000000000 --- a/.changes/fix-data-stream-size +++ /dev/null @@ -1 +0,0 @@ -patch type="fixed" "Omit data stream totalLength when size is unknown" diff --git a/.changes/harden-rpc-tester b/.changes/harden-rpc-tester deleted file mode 100644 index 94f179c02..000000000 --- a/.changes/harden-rpc-tester +++ /dev/null @@ -1 +0,0 @@ -patch type="fixed" "Harden the example RPC tester" diff --git a/.changes/screenshare-typed-api b/.changes/screenshare-typed-api deleted file mode 100644 index 6f8009a01..000000000 --- a/.changes/screenshare-typed-api +++ /dev/null @@ -1 +0,0 @@ -patch type="added" "Add ScreenSelectDialog.show and Hardware.requestCapturePermission so apps can start screen share without importing flutter_webrtc" diff --git a/.changes/swift-package-manager b/.changes/swift-package-manager deleted file mode 100644 index b9e80e398..000000000 --- a/.changes/swift-package-manager +++ /dev/null @@ -1 +0,0 @@ -minor type="added" "Swift Package Manager support for iOS and macOS. CocoaPods remains fully supported." diff --git a/.version b/.version index c8e38b614..10c2c0c3d 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.9.0 +2.10.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2feddf058..7d712b9e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## 2.10.0 + +* Added: Swift Package Manager support for iOS and macOS. CocoaPods remains fully supported. +* Added: Add ScreenSelectDialog.show and Hardware.requestCapturePermission so apps can start screen share without importing flutter_webrtc +* Fixed: Omit data stream totalLength when size is unknown +* Fixed: Fix compile errors on Dart 3.13 where nullable publish options are no longer promoted across await +* Fixed: Harden the example RPC tester + ## 2.9.0 * Added: Add native certificate pinning for SDK-owned connections diff --git a/README.md b/README.md index 5f8cc62e8..7f6fd3c07 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Include this package to your `pubspec.yaml` ```yaml --- dependencies: - livekit_client: ^2.9.0 + livekit_client: ^2.10.0 ``` ### iOS diff --git a/ios/livekit_client.podspec b/ios/livekit_client.podspec index ce265d3b6..2ed8e5cc3 100644 --- a/ios/livekit_client.podspec +++ b/ios/livekit_client.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'livekit_client' - s.version = '2.9.0' + s.version = '2.10.0' s.summary = 'Open source platform for real-time audio and video.' s.description = 'Open source platform for real-time audio and video.' s.homepage = 'https://livekit.io/' diff --git a/lib/src/livekit.dart b/lib/src/livekit.dart index e498006d8..dee82f963 100644 --- a/lib/src/livekit.dart +++ b/lib/src/livekit.dart @@ -23,7 +23,7 @@ import 'support/webrtc_initialize_options.dart'; /// Main entry point to connect to a room. /// {@category Room} class LiveKitClient { - static const version = '2.9.0'; + static const version = '2.10.0'; /// Initialize the WebRTC plugin. /// diff --git a/macos/livekit_client.podspec b/macos/livekit_client.podspec index 938cf4389..bfbc9c198 100644 --- a/macos/livekit_client.podspec +++ b/macos/livekit_client.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'livekit_client' - s.version = '2.9.0' + s.version = '2.10.0' s.summary = 'Open source platform for real-time audio and video.' s.description = 'Open source platform for real-time audio and video.' s.homepage = 'https://livekit.io/' diff --git a/pubspec.yaml b/pubspec.yaml index 70c8b9527..c4cd66b57 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ name: livekit_client description: Flutter Client SDK for LiveKit. Build real-time video and audio into your apps. Supports iOS, Android, and Web. -version: 2.9.0 +version: 2.10.0 homepage: https://github.com/livekit/client-sdk-flutter # Test fixture keys for certificate pinning tests, not real secrets.