Skip to content

Commit

Permalink
Update platform versions and Alamofire version in package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
elenipapanik committed Mar 10, 2020
1 parent 059d8c9 commit 7eee9bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ import PackageDescription
let package = Package(
name: "ErrorHandler",
platforms: [
.iOS(.v8),
.macOS(.v10_10),
.watchOS(.v2),
.tvOS(.v9)
.iOS(.v10),
.macOS(.v10_12),
.watchOS(.v3),
.tvOS(.v10)
],
products: [
.library(
name: "ErrorHandler",
targets: ["ErrorHandler"]),
],
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire.git", "4.0.0"..<"5.0.0")
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.0.0"))
],
targets: [
.target(name: "ErrorHandler", dependencies: ["Alamofire"], path: "./ErrorHandler"),
Expand Down

0 comments on commit 7eee9bc

Please sign in to comment.