Skip to content

Commit a927415

Browse files
authored
v2.10.1 (#853)
1 parent 31fd522 commit a927415

File tree

9 files changed

+16
-8
lines changed

9 files changed

+16
-8
lines changed

.changes/agent-failure

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

.changes/camera-timeout

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

.changes/sendable-extension

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

.changes/text-stream-corruption

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.10.0
1+
2.10.1

CHANGELOG.md

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

3+
## [2.10.1] - 2025-11-26
4+
5+
### Changed
6+
7+
- Allowed Agent recovery from failed state
8+
- Removed '@unchecked Sendable' extensions on common types
9+
10+
### Fixed
11+
12+
- Timeouts when publishing camera tracks
13+
- Processing data packets out-of-order leading to stream corruption
14+
315
## [2.10.0] - 2025-11-13
416

517
### 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.10.0"
3+
spec.version = "2.10.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.10.0")),
44+
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.10.1")),
4545
],
4646
targets: [
4747
.target(

Sources/LiveKit/LiveKit.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class LiveKitSDK: NSObject, Loggable {
3232
override private init() {}
3333

3434
@objc(sdkVersion)
35-
public static let version = "2.10.0"
35+
public static let version = "2.10.1"
3636

3737
fileprivate struct State {
3838
var logger: Logger = OSLogger()

0 commit comments

Comments
 (0)