Skip to content

Commit

Permalink
fix: iOS v11 deprecation for SPM with tools version >=5.9 (#3823)
Browse files Browse the repository at this point in the history
  • Loading branch information
apps4everyone committed Jan 31, 2024
1 parent 4ac6cac commit 7b38612
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Expand Up @@ -27,8 +27,8 @@ import PackageDescription

let package = Package(name: "Alamofire",
platforms: [.macOS(.v10_13),
.iOS(.v11),
.tvOS(.v11),
.iOS(.v12),
.tvOS(.v12),
.watchOS(.v4)],
products: [
.library(name: "Alamofire", targets: ["Alamofire"]),
Expand Down
4 changes: 2 additions & 2 deletions Package@swift-5.9.swift
Expand Up @@ -27,8 +27,8 @@ import PackageDescription

let package = Package(name: "Alamofire",
platforms: [.macOS(.v10_13),
.iOS(.v11),
.tvOS(.v11),
.iOS(.v12),
.tvOS(.v12),
.watchOS(.v4)],
products: [
.library(name: "Alamofire", targets: ["Alamofire"]),
Expand Down

1 comment on commit 7b38612

@kapitoshka438
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OMG finally!

Please sign in to comment.