Skip to content

Commit daa7dad

Browse files
authored
Update platform requirements (#30)
* Relax platform requirements to macOS 13 and iOS 16 * Expand supported platforms
1 parent 19857af commit daa7dad

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: Package.swift

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ import PackageDescription
66
let package = Package(
77
name: "mcp-swift-sdk",
88
platforms: [
9-
.macOS(.v14),
10-
.iOS(.v17),
9+
.macOS("13.0"),
10+
.macCatalyst("16.0"),
11+
.iOS("16.0"),
12+
.watchOS("9.0"),
13+
.tvOS("16.0"),
14+
.visionOS("1.0"),
1115
],
1216
products: [
1317
// Products define the executables and libraries a package produces, making them visible to other packages.

0 commit comments

Comments
 (0)