Skip to content

Commit

Permalink
feat: reducing required swift version (HdrHistogram#8)
Browse files Browse the repository at this point in the history
- reduces swift required to build this package to Swift 5.6
- reduces macOS support back to allow/support Catalina (10.15)
- adds explicit iOS and watchOS support
  • Loading branch information
dimlio committed Mar 7, 2023
2 parents c25b10b + 63caea1 commit e9214c5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Package.swift
@@ -1,4 +1,4 @@
// swift-tools-version: 5.7
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -8,7 +8,10 @@ let package = Package(
platforms: [
// specify each minimum deployment requirement,
//otherwise the platform default minimum is used.
.macOS(.v11),
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
Expand Down

0 comments on commit e9214c5

Please sign in to comment.