From 2f822ecc1e4265f97d8fc3551c70341cca529e6f Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Thu, 30 Nov 2023 09:17:59 +0100 Subject: [PATCH 1/2] Add visionOS platform support --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 6d83659..70b999c 100644 --- a/Package.swift +++ b/Package.swift @@ -25,7 +25,7 @@ let swiftSettings: [SwiftSetting] = [ let package = Package( name: "swift-openapi-async-http-client", platforms: [ - .macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), + .macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1) ], products: [ .library( From 7443f2c5185440cdfae65772a8a211eb68bbdc27 Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Thu, 30 Nov 2023 09:48:26 +0100 Subject: [PATCH 2/2] Update platform support matrix in docs --- README.md | 6 +++--- .../Documentation.docc/Documentation.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fde930f..140a9f1 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ A client transport that uses the [HTTPClient](https://swiftpackageindex.com/swif Use the transport with client code generated by [Swift OpenAPI Generator](https://github.com/apple/swift-openapi-generator). ## Supported platforms and minimum versions -| macOS | Linux | iOS | tvOS | watchOS | -| :-: | :-: | :-: | :-: | :-: | -| ✅ 10.15+ | ✅ | ✅ 13+ | ✅ 13+ | ✅ 6+ | +| macOS | Linux | iOS | tvOS | watchOS | visionOS | +| :-: | :-: | :-: | :-: | :-: | :-: | +| ✅ 10.15+ | ✅ | ✅ 13+ | ✅ 13+ | ✅ 6+ | ✅ 1+ | ## Usage diff --git a/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md b/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md index 123bc69..f41c431 100644 --- a/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md +++ b/Sources/OpenAPIAsyncHTTPClient/Documentation.docc/Documentation.md @@ -9,9 +9,9 @@ A client transport that uses the [HTTPClient](https://swiftpackageindex.com/swif Use the transport with client code generated by [Swift OpenAPI Generator](https://github.com/apple/swift-openapi-generator). ### Supported platforms and minimum versions -| macOS | Linux | iOS | tvOS | watchOS | -| :-: | :-: | :-: | :-: | :-: | -| ✅ 10.15+ | ✅ | ✅ 13+ | ✅ 13+ | ✅ 6+ | +| macOS | Linux | iOS | tvOS | watchOS | visionOS | +| :-: | :-: | :-: | :-: | :-: | :-: | +| ✅ 10.15+ | ✅ | ✅ 13+ | ✅ 13+ | ✅ 6+ | ✅ 1+ | ### Usage