Skip to content

Commit

Permalink
Increase platforms compatibility (#6)
Browse files Browse the repository at this point in the history
## Description

<!--- 
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context.
-->

Improve platform compatibility by updating the OpenAPIRuntime version to
`0.1.3`, which adds support for macOS 10.15, iOS 13, tvOS 13, and
watchOS 6.

Fixes **None**

## Type of change

<!--- Please delete options that are not relevant. -->

- [x] New feature (non-breaking change which adds functionality)

## Checklist

<!--- Please delete options that are not relevant. -->

- [x] All new and existing tests passed.
  • Loading branch information
o-nnerb committed Jun 14, 2023
1 parent a9f5546 commit 93273a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-openapi-runtime",
"state" : {
"revision" : "b66f94a30a25330635f3e5e064245acfd92ff5a2",
"version" : "0.1.2"
"revision" : "02ae849d3ed0905d467b13c9056658ca383c9749",
"version" : "0.1.3"
}
}
],
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "swift-openapi-request-dl",
platforms: [.macOS(.v13), .iOS(.v16), .tvOS(.v16), .watchOS(.v9)],
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)],
products: [
.library(
name: "OpenAPIRequestDL",
Expand All @@ -19,7 +19,7 @@ let package = Package(
),
.package(
url: "https://github.com/apple/swift-openapi-runtime",
from: "0.1.2"
from: "0.1.3"
),
.package(
url: "https://github.com/apple/swift-docc-plugin",
Expand Down

0 comments on commit 93273a2

Please sign in to comment.