Skip to content

Commit

Permalink
🔧 Bump deployment target to iOS 12
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Nov 2, 2023
1 parent 5ef618c commit f827701
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
3 changes: 1 addition & 2 deletions ACKategories.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ Tools, cocoa subclasses and extensions we love to use at Ackee.
s.author = { 'Ackee' => '[email protected]' }
s.source = { :git => 'https://github.com/AckeeCZ/ACKategories.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ackeecz'
s.swift_version = '5.1.3'

s.ios.deployment_target = '11.0'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'

s.source_files = 'ACKategoriesCore/**/*.swift'
Expand Down
12 changes: 5 additions & 7 deletions ACKategories.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -1189,6 +1189,8 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 6.12.3;
ONLY_ACTIVE_ARCH = YES;
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -1225,6 +1227,8 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 6.12.3;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -1298,7 +1302,6 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1374,7 +1377,6 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = cz.ackee.enterprise.ACKategoriesCore;
Expand Down Expand Up @@ -1448,7 +1450,6 @@
"@executable_path/../Frameworks",
"@loader_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1514,7 +1515,6 @@
"@executable_path/../Frameworks",
"@loader_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = cz.ackee.enterprise.ACKategoriesCoreTests;
Expand Down Expand Up @@ -1585,7 +1585,6 @@
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = "ACKategories-iOS/Supporting files/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -1661,7 +1660,6 @@
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = "ACKategories-iOS/Supporting files/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
9 changes: 3 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// swift-tools-version:5.0
// swift-tools-version:5.9
import PackageDescription

let package = Package(
name: "ACKategories",
platforms: [
.iOS(.v11),
.macOS("10.13")
.iOS(.v12),
.macOS(.v10_13)
],
products: [
.library(name: "ACKategories", targets: ["ACKategories-iOS"]),
Expand All @@ -16,8 +16,5 @@ let package = Package(
.testTarget(name: "ACKategories-iOSTests", dependencies: ["ACKategories-iOS"], path: "ACKategories-iOSTests"),
.target(name: "ACKategoriesCore", path: "ACKategoriesCore"),
.testTarget(name: "ACKategoriesCoreTests", dependencies: ["ACKategoriesCore"], path: "ACKategoriesCoreTests"),
],
swiftLanguageVersions: [
.v5
]
)

0 comments on commit f827701

Please sign in to comment.