Skip to content

Commit d8995b7

Browse files
authored
v2.6.0 (#697)
1 parent c21fb20 commit d8995b7

File tree

10 files changed

+21
-9
lines changed

10 files changed

+21
-9
lines changed

.nanpa/background-blur.kdl

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

.nanpa/new-mic-mute-mode.kdl

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

.nanpa/publish-audio-check-frames.kdl

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

.nanpa/sendable-callbacks.kdl

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

.nanpa/update-protobuf.kdl

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

.nanparc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version 2.5.1
1+
version 2.6.0
22
name client-sdk-swift
33
custom ./scripts/replace_version.sh

CHANGELOG.md

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

3+
## [2.6.0] - 2025-05-15
4+
5+
### Added
6+
7+
- New API to capture pre-connect audio and send it to agents
8+
- Added BackgroundBlurVideoProcessor
9+
- New mic mute mode
10+
11+
### Changed
12+
13+
- Ensure audio frames are being generated when publishing audio
14+
- Update to protobuf v1.37.0
15+
16+
### Fixed
17+
18+
- Sendable requirement for internal callbacks
19+
320
## [2.5.1] - 2025-04-23
421

522
### 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.5.1"
3+
spec.version = "2.6.0"
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.5.1")),
44+
.package(name: "LiveKit", url: "https://github.com/livekit/client-sdk-swift.git", .upToNextMajor("2.6.0")),
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.5.1"
42+
public static let version = "2.6.0"
4343

4444
@objc
4545
public static func setLoggerStandardOutput() {

0 commit comments

Comments
 (0)