Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .changes/drop-swift-5-support

This file was deleted.

1 change: 0 additions & 1 deletion .changes/manual-mode-skip-session-config

This file was deleted.

1 change: 0 additions & 1 deletion .changes/metal-renderer-fallback

This file was deleted.

1 change: 0 additions & 1 deletion .changes/session-e2ee

This file was deleted.

2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.13.0
2.14.0
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [2.14.0] - 2026-04-29

### Added

- Configure end-to-end encryption directly through Session initialization

### Changed

- Drop Xcode 15 (Swift 5.x) support; minimum is now Xcode 16 / Swift 6.0
- Skip AVAudioSession configuration in manual rendering mode

### Fixed

- Avoid Metal pipeline freeze on iPhone 11 family by defaulting to sample buffer renderer

## [2.13.0] - 2026-04-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion LiveKitClient.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "LiveKitClient"
spec.version = "2.13.0"
spec.version = "2.14.0"
spec.summary = "LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website."
spec.homepage = "https://github.com/livekit/client-sdk-swift"
spec.license = {:type => "Apache 2.0", :file => "LICENSE"}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Add the dependency and also to your target
let package = Package(
...
dependencies: [
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.13.0")),
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.14.0")),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/LiveKit/LiveKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class LiveKitSDK: NSObject, Loggable {
override private init() {}

@objc(sdkVersion)
public static let version = "2.13.0"
public static let version = "2.14.0"
static let ffiVersion = buildVersion()

fileprivate struct State {
Expand Down
Loading