Skip to content

Commit

Permalink
Update OS version requirement for compatibility with latest Vapor beta (
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynne committed Feb 27, 2020
1 parent 0f79b27 commit d22a648
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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: "jwt",
platforms: [
.macOS(.v10_14)
.macOS(.v10_15)
],
products: [
.library(name: "JWT", targets: ["JWT"]),
],
dependencies: [
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.0.0-beta.2.5"),
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-beta.3.19"),
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.0.0-beta.3"),
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0-beta.4"),
],
targets: [
.target(name: "JWT", dependencies: ["JWTKit", "Vapor"]),
Expand Down

0 comments on commit d22a648

Please sign in to comment.