Skip to content

Commit 0db69c2

Browse files
authored
Bump visionOS version and patch (#178)
* bump visionOS version and patch * correct upgrade path
1 parent c93bc90 commit 0db69c2

3 files changed

Lines changed: 55 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
xcuserdata/
77
xcshareddata/
88
Package.resolved
9+
*.bak

Package@swift-6.2.swift

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// swift-tools-version:6.2
2+
// Swift 6.2+ (Xcode 26.0+)
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "ElevenLabs",
8+
platforms: [
9+
.iOS(.v13),
10+
.macOS(.v10_15),
11+
.macCatalyst(.v14),
12+
.visionOS(.v26),
13+
.tvOS(.v17)
14+
],
15+
products: [
16+
.library(
17+
name: "ElevenLabs",
18+
targets: ["ElevenLabs"]
19+
)
20+
],
21+
dependencies: [
22+
.package(url: "https://github.com/livekit/client-sdk-swift.git", from: "2.10.0")
23+
],
24+
targets: [
25+
.target(
26+
name: "ElevenLabs",
27+
dependencies: [
28+
.product(name: "LiveKit", package: "client-sdk-swift")
29+
],
30+
// TODO: Re-enable StrictConcurrency once LiveKit depends on a JWTKit
31+
// release where Sendable annotations are available (4.13.x patch or 5.x).
32+
// Tracking: https://github.com/livekit/client-sdk-swift/issues/846
33+
exclude: [
34+
"Internal/Protocol/schemas/agent.asyncapi.yaml"
35+
],
36+
resources: [
37+
.process("PrivacyInfo.xcprivacy")
38+
]
39+
),
40+
.testTarget(
41+
name: "ElevenLabsTests",
42+
dependencies: [
43+
"ElevenLabs",
44+
.product(name: "LiveKit", package: "client-sdk-swift")
45+
],
46+
resources: [
47+
.copy("Resources/silence.mp3"),
48+
.copy("Resources/spoken-audio.mp3")
49+
]
50+
)
51+
],
52+
swiftLanguageModes: [.v5]
53+
)

Sources/ElevenLabs/Internal/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
import Foundation
44

55
enum SDKVersion {
6-
static let version = "3.1.4"
6+
static let version = "3.1.5"
77
}

0 commit comments

Comments
 (0)