Skip to content

Commit 95ed538

Browse files
committed
chore: make iOS 12 the minimum version
1 parent 8470a3f commit 95ed538

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

BatchExtension.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pod::Spec.new do |spec|
77
spec.license = { :type => "MIT", :file => "LICENSE" }
88
spec.author = { "Batch.com" => "[email protected]" }
99

10-
spec.platform = :ios, "10.0"
10+
spec.platform = :ios, "12.0"
1111
spec.swift_version = ['5.0', '5.1', '5.2', '5.3']
1212
spec.source = { :git => "https://github.com/BatchLabs/Batch-iOS-SDK-Extension.git", :tag => "#{spec.version}" }
1313

BatchExtension.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@
412412
DYLIB_INSTALL_NAME_BASE = "@rpath";
413413
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
414414
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
415-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
415+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
416416
LD_RUNPATH_SEARCH_PATHS = (
417417
"$(inherited)",
418418
"@executable_path/Frameworks",
@@ -444,7 +444,7 @@
444444
DYLIB_INSTALL_NAME_BASE = "@rpath";
445445
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
446446
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
447-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
447+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
448448
LD_RUNPATH_SEARCH_PATHS = (
449449
"$(inherited)",
450450
"@executable_path/Frameworks",

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Removed legacy code
44
- Removed use of App Group and UserDefaults
55
- Added privacy manifest
6+
- Minimum iOS version is 12.0 as Xcode doesn't support older versions anymore.
67

78
# 3.0.3
89

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import PackageDescription
66
let package = Package(
77
name: "BatchExtension",
88
platforms: [
9-
.iOS(.v10)
9+
.iOS(.v12)
1010
],
1111
products: [
1212
.library(

0 commit comments

Comments
 (0)