Skip to content

Commit

Permalink
Merge pull request #76 from stackotter/older_platform_support
Browse files Browse the repository at this point in the history
Support older Apple platforms
  • Loading branch information
tayloraswift committed Sep 2, 2024
2 parents 3433f53 + 48fd281 commit aff4204
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/tayloraswift/swift-hash",
"state" : {
"revision" : "7798c344afd5a96b689fa9904ad52242a85b5068",
"version" : "0.6.0"
"revision" : "4d70a941b7039358f2ec8565f6c3b53c05f6c6ef",
"version" : "0.6.3"
}
}
],
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import PackageDescription

let package:Package = .init(name: "swift-png",
platforms: [.macOS("13.3"), .iOS("16.4"), .tvOS("16.4"), .watchOS("9.4")],
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)],
products: [
.library(name: "LZ77", targets: ["LZ77"]),
.library(name: "PNG", targets: ["PNG"]),
Expand All @@ -12,7 +12,7 @@ let package:Package = .init(name: "swift-png",
],
dependencies: [
.package(url: "https://github.com/tayloraswift/swift-hash", .upToNextMinor(
from: "0.6.0")),
from: "0.6.3")),
.package(url: "https://github.com/tayloraswift/swift-grammar", .upToNextMinor(
from: "0.4.0")),
],
Expand Down

0 comments on commit aff4204

Please sign in to comment.