From 50c6207c0db38074f650fceedad2ca284ec758f2 Mon Sep 17 00:00:00 2001 From: Daisuke TONOSAKI Date: Thu, 5 Nov 2020 22:57:53 +0900 Subject: [PATCH] Change deployment target to iOS 9. --- Package.swift | 2 +- README.md | 6 +++--- SwiftyXMLParser.podspec | 2 +- SwiftyXMLParser/Config.xcconfig | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Package.swift b/Package.swift index 904c9d1..46be339 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let package = Package( name: "SwiftyXMLParser", - platforms: [.iOS(.v8), .macOS(.v10_10)], + platforms: [.iOS(.v9), .macOS(.v10_10)], products: [ .library(name: "SwiftyXMLParser", targets: ["SwiftyXMLParser"]) ], diff --git a/README.md b/README.md index 79e87e3..2538aec 100755 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Version](https://img.shields.io/cocoapods/v/SwiftyXMLParser.svg?style=flat)](http://cocoapods.org/pods/SwiftyXMLParser) [![License](https://img.shields.io/cocoapods/l/SwiftyXMLParser.svg?style=flat)](http://cocoapods.org/pods/SwiftyXMLParser) - ![Platform](https://img.shields.io/badge/platforms-iOS%208.0+%20%7C%20macOS%2010.10+%20%7C%20tvOS%209.0+-333333.svg) + ![Platform](https://img.shields.io/badge/platforms-iOS%209.0+%20%7C%20macOS%2010.10+%20%7C%20tvOS%209.0+-333333.svg) Simple XML Parser implemented in Swift @@ -19,7 +19,7 @@ This is a XML parser inspired by [SwiftyJSON](https://github.com/SwiftyJSON/Swif - [x] easy debugging XML pathes. # Requirement -+ iOS 8.0+ ++ iOS 9.0+ + tvOS 9.0+ + macOS 10.10+ + Swift 5.0 @@ -41,7 +41,7 @@ github "https://github.com/yahoojapan/SwiftyXMLParser" ### CocoaPods #### 1. create Podfile ```ruby:Podfile -platform :ios, '8.0' +platform :ios, '9.0' use_frameworks! pod "SwiftyXMLParser", :git => 'https://github.com/yahoojapan/SwiftyXMLParser.git' diff --git a/SwiftyXMLParser.podspec b/SwiftyXMLParser.podspec index 888da1d..bd065d1 100755 --- a/SwiftyXMLParser.podspec +++ b/SwiftyXMLParser.podspec @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.license = "MIT" s.author = { "kahayash" => "kahayash@yahoo-corp.jp" } - s.ios.deployment_target = "8.0" + s.ios.deployment_target = "9.0" s.tvos.deployment_target = "9.0" s.osx.deployment_target = "10.10" s.watchos.deployment_target = '6.0' diff --git a/SwiftyXMLParser/Config.xcconfig b/SwiftyXMLParser/Config.xcconfig index 230aea5..a62e65c 100644 --- a/SwiftyXMLParser/Config.xcconfig +++ b/SwiftyXMLParser/Config.xcconfig @@ -1,7 +1,7 @@ // Supported Platforms SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator appletvos appletvsimulator MACOSX_DEPLOYMENT_TARGET = 10.10 -IPHONEOS_DEPLOYMENT_TARGET = 8.0 +IPHONEOS_DEPLOYMENT_TARGET = 9.0 TVOS_DEPLOYMENT_TARGET = 9.0 // Targeted devices