Skip to content

Commit 32cef1a

Browse files
authored
Add visionOS platform support (#85)
### Motivation While this isn't technically necessary, as all versions of a platform not explicitly mentioned are assumed to be supported, it's better to be explicit here. ### Modifications Add `visionOS(.v1)` to the list of supported platforms. ### Result Clearer support matrix. ### Test Plan N/A, this is basically just a documentation change.
1 parent 7d1644b commit 32cef1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let swiftSettings: [SwiftSetting] = [
2424
let package = Package(
2525
name: "swift-openapi-runtime",
2626
platforms: [
27-
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6),
27+
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)
2828
],
2929
products: [
3030
.library(

0 commit comments

Comments
 (0)