From 18e14c9f6ac57bde2eb57b4e818ab8c67d6389a3 Mon Sep 17 00:00:00 2001 From: Akio Yasui Date: Tue, 16 Aug 2022 16:19:30 +0900 Subject: [PATCH] Fix platform version specifications --- Tablier.podspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tablier.podspec b/Tablier.podspec index 900f5aa..ac2d4ee 100644 --- a/Tablier.podspec +++ b/Tablier.podspec @@ -17,10 +17,10 @@ Pod::Spec.new do |spec| spec.author = { "Akio Yasui" => "akkyie01@gmail.com" } - spec.ios.deployment_target = "8.0" - spec.osx.deployment_target = "10.9" - spec.tvos.deployment_target = "9.0" spec.swift_version = "5" + spec.osx.deployment_target = "10.15" + spec.ios.deployment_target = "13.0" + spec.tvos.deployment_target = "13.0" spec.source = { :git => "https://github.com/akkyie/Tablier.git", :tag => "#{spec.version}" } spec.source_files = "Sources/Tablier"