Skip to content

Commit d029478

Browse files
authored
v2.6.1 (#723)
1 parent 0d4806a commit d029478

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

.changes/xcode-26

Lines changed: 0 additions & 1 deletion
This file was deleted.

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.0
1+
2.6.1

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [2.6.1] - 2025-06-17
4+
5+
### Fixed
6+
7+
- Fixed Xcode 26 build errors with Swift 6.2
8+
- Remove problematic KeyPath conformance to Sendable
9+
- Fix race condition during remote track deinit
10+
- Fix WebRTC symbol clash
11+
12+
### Changed
13+
14+
- Update audio session logic
15+
- Flag to disable automatic audio session configuration
16+
317
## [2.6.0] - 2025-05-15
418

519
### Added

LiveKitClient.podspec

Lines changed: 1 addition & 1 deletion
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.6.0"
3+
spec.version = "2.6.1"
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"}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Add the dependency and also to your target
4141
let package = Package(
4242
...
4343
dependencies: [
44-
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.6.0")),
44+
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.6.1")),
4545
],
4646
targets: [
4747
.target(

Sources/LiveKit/LiveKit.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let logger = Logger(label: "LiveKitSDK")
3939
@objc
4040
public class LiveKitSDK: NSObject {
4141
@objc(sdkVersion)
42-
public static let version = "2.6.0"
42+
public static let version = "2.6.1"
4343

4444
@objc
4545
public static func setLoggerStandardOutput() {

0 commit comments

Comments
 (0)