Skip to content

Commit

Permalink
Match Vapor's minimum OS requirement and bump minimum required versio…
Browse files Browse the repository at this point in the history
…ns of dependencies. (#15)
  • Loading branch information
gwynne authored Feb 27, 2020
1 parent 82912b2 commit 2b6acdf
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 @@ -4,14 +4,14 @@ import PackageDescription
let package = Package(
name: "apns",
platforms: [
.macOS(.v10_14)
.macOS(.v10_15)
],
products: [
.library(name: "APNS", targets: ["APNS"]),
],
dependencies: [
.package(url: "https://github.com/kylebrowning/APNSwift.git", from: "1.7.0"),
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-beta.2.1"),
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-beta.4"),
],
targets: [
.target(name: "APNS", dependencies: ["APNSwift", "Vapor"]),
Expand Down

0 comments on commit 2b6acdf

Please sign in to comment.