Skip to content

Commit

Permalink
Merge pull request #98 from vincentneo/xcode14Preparation
Browse files Browse the repository at this point in the history
Prepare for xcode 14 minimum deployment os
  • Loading branch information
vincentneo committed Sep 18, 2022
2 parents 086b779 + 41bc4be commit c00b732
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
8 changes: 4 additions & 4 deletions CoreGPX.podspec
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'CoreGPX'
s.version = '0.9.0'
s.version = '0.9.1'
s.summary = 'A library for reading and creation of GPX location log files.'

# This description is used to generate tags and improve search results.
Expand All @@ -28,9 +28,9 @@ Pod::Spec.new do |s|
s.social_media_url = 'https://twitter.com/ivincentneo'

s.swift_versions = ['4.2', '5.0']
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'

s.source_files = 'Classes'

Expand Down
4 changes: 4 additions & 0 deletions Example/CoreGPX.xcodeproj/project.pbxproj
Expand Up @@ -505,6 +505,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = 3X69W4AQD6;
INFOPLIST_FILE = GPXKit/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = vincent.CoreGPX.example;
Expand All @@ -521,6 +522,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = 3X69W4AQD6;
INFOPLIST_FILE = GPXKit/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = vincent.CoreGPX.example;
Expand All @@ -541,6 +543,7 @@
"$(inherited)",
);
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -556,6 +559,7 @@
DEVELOPMENT_TEAM = 3X69W4AQD6;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
12 changes: 6 additions & 6 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "CoreGPX",
platforms: [
.iOS(.v9), .macOS(.v10_10), .watchOS(.v2)
.iOS(.v11), .macOS(.v10_13), .watchOS(.v4)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
Expand Down

0 comments on commit c00b732

Please sign in to comment.