Skip to content

Commit

Permalink
Merge pull request #57 from daisuke-t-jp/ios8-to-9
Browse files Browse the repository at this point in the history
Change deployment target to iOS 9.
  • Loading branch information
kazuhiro4949 authored Nov 9, 2020
2 parents c9c6d46 + 50c6207 commit ec7f183
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
],
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion SwiftyXMLParser.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.license = "MIT"
s.author = { "kahayash" => "[email protected]" }

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'
Expand Down
2 changes: 1 addition & 1 deletion SwiftyXMLParser/Config.xcconfig
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit ec7f183

Please sign in to comment.