Skip to content

Commit 2f6cdd7

Browse files
committed
v2.0.6
1 parent 6f50c05 commit 2f6cdd7

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

LiveKitClient.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "LiveKitClient"
3-
spec.version = "2.0.5"
3+
spec.version = "2.0.6"
44
spec.summary = "LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website."
55
spec.homepage = "https://github.com/livekit/client-sdk-swift"
66
spec.license = {:type => "Apache 2.0", :file => "LICENSE"}
@@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
1010
spec.osx.deployment_target = "10.15"
1111

1212
spec.swift_versions = ["5.7"]
13-
spec.source = {:git => "https://github.com/livekit/client-sdk-swift.git", :tag => "2.0.5"}
13+
spec.source = {:git => "https://github.com/livekit/client-sdk-swift.git", :tag => "2.0.6"}
1414

1515
spec.source_files = "Sources/**/*"
1616

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ let package = Package(
1818
],
1919
dependencies: [
2020
// LK-Prefixed Dynamic WebRTC XCFramework
21-
.package(url: "https://github.com/livekit/webrtc-xcframework.git", exact: "114.5735.13"),
22-
.package(url: "https://github.com/apple/swift-protobuf.git", .upToNextMajor(from: "1.25.2")),
23-
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.5.4")),
21+
.package(url: "https://github.com/livekit/webrtc-xcframework.git", exact: "114.5735.14"),
22+
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.26.0"),
23+
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
2424
// Only used for DocC generation
25-
.package(url: "https://github.com/apple/swift-docc-plugin", .upToNextMajor(from: "1.3.0")),
25+
.package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.3.0"),
2626
// Only used for Testing
27-
.package(url: "https://github.com/vapor/jwt-kit.git", .upToNextMajor(from: "4.13.2")),
27+
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.13.4"),
2828
],
2929
targets: [
3030
.target(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add the dependency and also to your target
3838
let package = Package(
3939
...
4040
dependencies: [
41-
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.0.5")),
41+
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.0.6")),
4242
],
4343
targets: [
4444
.target(

Sources/LiveKit/E2EE/KeyProvider.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ public class BaseKeyProvider: Loggable {
5353
ratchetWindowSize: options.ratchetWindowSize,
5454
sharedKeyMode: isSharedKey,
5555
uncryptedMagicBytes: options.uncryptedMagicBytes,
56-
failureTolerance: options.failureTolerance)
56+
failureTolerance: options.failureTolerance,
57+
keyRingSize: 16)
5758
if isSharedKey, sharedKey != nil {
5859
let keyData = sharedKey!.data(using: .utf8)!
5960
rtcKeyProvider.setSharedKey(keyData, with: 0)

Sources/LiveKit/Extensions/RTCI420Buffer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ extension LKRTCI420Buffer {
6262
dstUV: dstUV,
6363
dstStrideUV: Int32(dstUVStride),
6464
width: width,
65-
width: height)
65+
height: height)
6666

6767
} else {
6868
let dst = CVPixelBufferGetBaseAddress(outputPixelBuffer)

Sources/LiveKit/LiveKit.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let logger = Logger(label: "LiveKitSDK")
3434
@objc
3535
public class LiveKitSDK: NSObject {
3636
@objc(sdkVersion)
37-
public static let version = "2.0.5"
37+
public static let version = "2.0.6"
3838

3939
@objc
4040
public static func setLoggerStandardOutput() {

0 commit comments

Comments
 (0)