From e621e157e028cd305cb6ad8accea61a8424fea8f Mon Sep 17 00:00:00 2001 From: Adam Fowler Date: Wed, 14 Jun 2023 09:02:43 +0100 Subject: [PATCH] Relax minimum platforms to macOS 10.15, iOS 13, tvOS 13, and watchOS 6 --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 90f3538..8b9f3cc 100644 --- a/Package.swift +++ b/Package.swift @@ -6,13 +6,13 @@ import PackageDescription let package = Package( name: "swift-openapi-hummingbird", platforms: [ - .macOS(.v13), .iOS(.v16), .tvOS(.v16), .watchOS(.v9), + .macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), ], products: [ .library(name: "OpenAPIHummingbird", targets: ["OpenAPIHummingbird"]), ], dependencies: [ - .package(url: "https://github.com/apple/swift-openapi-runtime", .upToNextMinor(from: "0.1.0")), + .package(url: "https://github.com/apple/swift-openapi-runtime", .upToNextMinor(from: "0.1.3")), .package(url: "https://github.com/hummingbird-project/hummingbird", from: "1.0.0"), ], targets: [