Skip to content

Commit 3e8722d

Browse files
committed
Updates for Xcode 12
- Drops support for iOS < 9 - Drops support for macOS < 10.9
1 parent 709a485 commit 3e8722d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ in your Swift or Objective-C project. It is commonly used via
1515

1616
## Requirements
1717

18-
* iOS 8.0+, macOS 10.7+, tvOS 9.0+ (CocoaPods, Carthage, Swift PM)
18+
* iOS 9.0+, macOS 10.9+, tvOS 9.0+ (CocoaPods, Carthage, Swift PM)
1919
* Linux (Swift PM)
2020

2121
> GEOS is licensed under LGPL 2.1 and its compatibility with static linking is
@@ -34,7 +34,7 @@ at least controversial. Use of geos without dynamic linking is discouraged.
3434

3535
1. Update your `Cartfile` to include:
3636

37-
github "GEOSwift/geos" ~> 5.1.0
37+
github "GEOSwift/geos" ~> 6.0.0
3838

3939
2. Finish updating your project by following the [typical Carthage
4040
workflow](https://github.com/Carthage/Carthage#quick-start).
@@ -43,7 +43,7 @@ workflow](https://github.com/Carthage/Carthage#quick-start).
4343

4444
1. Update the top-level dependencies in your `Package.swift` to include:
4545

46-
.package(url: "https://github.com/GEOSwift/geos.git", from: "5.1.0")
46+
.package(url: "https://github.com/GEOSwift/geos.git", from: "6.0.0")
4747

4848
2. Update the target dependencies in your `Package.swift` to include
4949

Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.1.0</string>
18+
<string>6.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

geos.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'geos'
3-
s.version = '5.1.0'
3+
s.version = '6.0.0'
44
s.summary = 'GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS).'
55
s.homepage = 'http://trac.osgeo.org/geos'
66
s.license = {
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
git: 'https://github.com/GEOSwift/geos.git',
1313
tag: s.version
1414
}
15-
s.platforms = { ios: '8.0', osx: '10.7', tvos: '9.0' }
15+
s.platforms = { ios: '9.0', osx: '10.9', tvos: '9.0' }
1616
s.preserve_paths = 'Sources/geos/**/*'
1717
s.source_files = 'Sources/geos/{src,capi,public}/**/*'
1818
s.public_header_files = 'Sources/geos/public/**/*'

geos.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4898,7 +4898,7 @@
48984898
DYLIB_INSTALL_NAME_BASE = "@rpath";
48994899
INFOPLIST_FILE = "$(SRCROOT)/Resources/Info.plist";
49004900
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
4901-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
4901+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
49024902
LD_RUNPATH_SEARCH_PATHS = (
49034903
"$(inherited)",
49044904
"@executable_path/Frameworks",
@@ -4924,7 +4924,7 @@
49244924
DYLIB_INSTALL_NAME_BASE = "@rpath";
49254925
INFOPLIST_FILE = "$(SRCROOT)/Resources/Info.plist";
49264926
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
4927-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
4927+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
49284928
LD_RUNPATH_SEARCH_PATHS = (
49294929
"$(inherited)",
49304930
"@executable_path/Frameworks",
@@ -4956,7 +4956,7 @@
49564956
"@executable_path/../Frameworks",
49574957
"@loader_path/Frameworks",
49584958
);
4959-
MACOSX_DEPLOYMENT_TARGET = 10.7;
4959+
MACOSX_DEPLOYMENT_TARGET = 10.9;
49604960
PRODUCT_BUNDLE_IDENTIFIER = geoswift.geos;
49614961
PRODUCT_NAME = geos;
49624962
SDKROOT = macosx;
@@ -4982,7 +4982,7 @@
49824982
"@executable_path/../Frameworks",
49834983
"@loader_path/Frameworks",
49844984
);
4985-
MACOSX_DEPLOYMENT_TARGET = 10.7;
4985+
MACOSX_DEPLOYMENT_TARGET = 10.9;
49864986
PRODUCT_BUNDLE_IDENTIFIER = geoswift.geos;
49874987
PRODUCT_NAME = geos;
49884988
SDKROOT = macosx;

0 commit comments

Comments
 (0)