From 94f70f8abf132273af2078985249dc872ccad96c Mon Sep 17 00:00:00 2001 From: BatyrOvezdurdyyev Date: Sun, 10 Jan 2021 18:54:57 +0500 Subject: [PATCH 1/2] set to iOS 9.0 --- .../xcode/package.xcworkspace/contents.xcworkspacedata | 7 +++++++ AccordionSwift.podspec | 2 +- Package.swift | 2 +- README.md | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/AccordionSwift.podspec b/AccordionSwift.podspec index c4ee62c..41dd4bd 100755 --- a/AccordionSwift.podspec +++ b/AccordionSwift.podspec @@ -28,6 +28,6 @@ The best way of implement an accordion menu using an UITableView in Swift s.social_media_url = 'https://twitter.com/Vkt0r' s.swift_version = '5.0' - s.ios.deployment_target = '10.0' + s.ios.deployment_target = '9.0' s.source_files = 'Source/*.swift' end diff --git a/Package.swift b/Package.swift index 1fad142..e30d7be 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,7 @@ import PackageDescription let package = Package( name: "AccordionSwift", - platforms: [.iOS(.v10)], + platforms: [.iOS(.v9)], products: [ .library( name: "AccordionSwift", diff --git a/README.md b/README.md index 06142b0..152704f 100755 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ _An accordion/dropdown menu to integrate in your projects. This library is proto ## Requirements 💥 -- iOS 10.0+ +- iOS 9.0+ - Xcode 10.2+ ## Installation @@ -50,7 +50,7 @@ To integrate AccordionSwift into your Xcode project using CocoaPods, specify it ```ruby source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '10.0' +platform :ios, '9.0' use_frameworks! target '' do From a6f041bbd0a28ffc59ddc37c390838fd5502bdd9 Mon Sep 17 00:00:00 2001 From: BatyrOvezdurdyyev Date: Sun, 10 Jan 2021 19:14:22 +0500 Subject: [PATCH 2/2] set swift_version to 4.2 --- AccordionSwift.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AccordionSwift.podspec b/AccordionSwift.podspec index 41dd4bd..31b759b 100755 --- a/AccordionSwift.podspec +++ b/AccordionSwift.podspec @@ -26,7 +26,7 @@ The best way of implement an accordion menu using an UITableView in Swift s.author = { 'Victor Sigler' => 'vikt0r.sigler@gmail.com' } s.source = { :git => 'https://github.com/Vkt0r/AccordionSwift.git', :tag => "v#{s.version.to_s}" } s.social_media_url = 'https://twitter.com/Vkt0r' - s.swift_version = '5.0' + s.swift_version = '4.2' s.ios.deployment_target = '9.0' s.source_files = 'Source/*.swift'