Skip to content

Commit 8c22757

Browse files
committed
prepare v0.5.9
1 parent d1a772e commit 8c22757

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.5.9
4+
5+
* Fix: iOS audio issue which prevents `AVAudioSessionCategory` to switch correctly.
6+
37
## 0.5.8
48

59
* Support for protocol 7, remote unpublish.

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PODS:
77
- Libyuv (= 1703)
88
- WebRTC-SDK (= 97.4692.02)
99
- Libyuv (1703)
10-
- livekit_client (0.5.8):
10+
- livekit_client (0.5.9):
1111
- Flutter
1212
- WebRTC-SDK (~> 97.4692)
1313
- path_provider_ios (0.0.1):
@@ -48,7 +48,7 @@ SPEC CHECKSUMS:
4848
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
4949
flutter_webrtc: 3fd57d5bd9b6ce85d12d37f6f68d97be3b80509f
5050
Libyuv: 5f79ced0ee66e60a612ca97de1e6ccacd187a437
51-
livekit_client: 68df5f0ed045accdd5b14be7e68e4caedc0167a7
51+
livekit_client: 854fbd84ec40fa26030d1baaec427b7e2f6f3446
5252
path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02
5353
shared_preferences_ios: 548a61f8053b9b8a49ac19c1ffbc8b92c50d68ad
5454
WebRTC-SDK: dda4e50186f9eed672dc6bcf4faafb30c6ce48e3

example/macos/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PODS:
55
- FlutterMacOS
66
- WebRTC-SDK (= 97.4692.02)
77
- FlutterMacOS (1.0.0)
8-
- livekit_client (0.5.8):
8+
- livekit_client (0.5.9):
99
- FlutterMacOS
1010
- WebRTC-SDK (~> 97.4692)
1111
- path_provider_macos (0.0.1):
@@ -44,7 +44,7 @@ SPEC CHECKSUMS:
4444
device_info_plus_macos: 1ad388a1ef433505c4038e7dd9605aadd1e2e9c7
4545
flutter_webrtc: cbfa010d869391079d6713d9e0f1cda7dde7a407
4646
FlutterMacOS: 57701585bf7de1b3fc2bb61f6378d73bbdea8424
47-
livekit_client: a7482ba347ba089d0ac80564b44297d4563c7c1f
47+
livekit_client: 9201d814b9d5c7c6c0b0edabb341ba1a5253981b
4848
path_provider_macos: 160cab0d5461f0c0e02995469a98f24bdb9a3f1f
4949
shared_preferences_macos: a64dc611287ed6cbe28fd1297898db1336975727
5050
WebRTC-SDK: dda4e50186f9eed672dc6bcf4faafb30c6ce48e3

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ packages:
225225
path: ".."
226226
relative: true
227227
source: path
228-
version: "0.5.8"
228+
version: "0.5.9"
229229
logging:
230230
dependency: "direct main"
231231
description:

ios/livekit_client.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'livekit_client'
3-
s.version = '0.5.8'
3+
s.version = '0.5.9'
44
s.summary = 'Open source platform for real-time audio and video.'
55
s.description = 'Open source platform for real-time audio and video.'
66
s.homepage = 'https://livekit.io/'

lib/src/livekit.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'options.dart';
44
/// Main entry point to connect to a room.
55
/// {@category Room}
66
class LiveKitClient {
7-
static const version = '0.5.8';
7+
static const version = '0.5.9';
88

99
/// Convenience method for connecting to a LiveKit server.
1010
/// Returns a [Room] upon a successful connect or throws when it fails.

macos/livekit_client.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'livekit_client'
3-
s.version = '0.5.8'
3+
s.version = '0.5.9'
44
s.summary = 'Open source platform for real-time audio and video.'
55
s.description = 'Open source platform for real-time audio and video.'
66
s.homepage = 'https://livekit.io/'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: livekit_client
22
description: Flutter Client SDK for LiveKit.
33
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
4-
version: 0.5.8
4+
version: 0.5.9
55
homepage: https://livekit.io
66

77
environment:

0 commit comments

Comments
 (0)