Skip to content

Commit

Permalink
Relax minimum platforms
Browse files Browse the repository at this point in the history
to macOS 10.15, iOS 13, tvOS 13, and watchOS 6
  • Loading branch information
adam-fowler committed Jun 14, 2023
1 parent 39d8dd8 commit e621e15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit e621e15

Please sign in to comment.