Skip to content

Commit

Permalink
Merge pull request #145 from onevcat/fix/upgrade-version
Browse files Browse the repository at this point in the history
Upgrade minimal supported versions
  • Loading branch information
onevcat committed Mar 18, 2024
2 parents d570a38 + ef72091 commit 0d7b23a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions APNGKit.podspec
Expand Up @@ -18,9 +18,9 @@ Pod::Spec.new do |s|
s.authors = { "onevcat" => "onevcat@gmail.com" }
s.social_media_url = "http://twitter.com/onevcat"

s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.12"
s.tvos.deployment_target = "9.0"
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.14"
s.tvos.deployment_target = "12.0"

s.source = { :git => "https://github.com/onevcat/APNGKit.git", :tag => s.version }

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -3,7 +3,7 @@ import PackageDescription

let package = Package(
name: "APNGKit",
platforms: [.macOS(.v10_11), .iOS(.v9), .tvOS(.v9)],
platforms: [.macOS(.v10_14), .iOS(.v12), .tvOS(.v12)],
products: [
.library(name: "APNGKit", targets: ["APNGKit"])
],
Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.9.swift
Expand Up @@ -3,7 +3,7 @@ import PackageDescription

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

0 comments on commit 0d7b23a

Please sign in to comment.