Skip to content

Commit

Permalink
Bump iOS requirement to iOS10+
Browse files Browse the repository at this point in the history
iOS9 simulator is no longer available with the Xcode 11.4+ requirement. https://twitter.com/xenadu02/status/1140093901438689280
  • Loading branch information
groue committed May 31, 2020
1 parent 00c2f61 commit 03a66af
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Documentation/GRDB5MigrationGuide.md
Expand Up @@ -24,7 +24,7 @@ GRDB requirements have been bumped:

- **Swift 5.2+** (was Swift 4.2+)
- **Xcode 11.4+** (was Xcode 10.0+)
- iOS 9.0+ (unchanged)
- **iOS 10.0+** (was iOS 9.0+)
- **macOS 10.10+** (was macOS 10.9+)
- tvOS 9.0+ (unchanged)
- watchOS 2.0+ (unchanged)
Expand Down
2 changes: 1 addition & 1 deletion GRDB.swift.podspec
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.module_name = 'GRDB'

s.swift_versions = ['5.2']
s.ios.deployment_target = '9.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "GRDB",
platforms: [
.iOS("9.0"),
.iOS("10.0"),
.macOS("10.10"),
.tvOS("9.0"),
.watchOS("2.0"),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@

**Latest release**: May 11, 2020 • version 5.0.0-beta.2 • [CHANGELOG](CHANGELOG.md)[Migrating From GRDB 4 to GRDB 5](Documentation/GRDB5MigrationGuide.md)

**Requirements**: iOS 9.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+ • Swift 5.2+ / Xcode 11.4+
**Requirements**: iOS 10.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+ • Swift 5.2+ / Xcode 11.4+

| Swift version | GRDB version |
| ------------- | ----------------------------------------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion SQLiteCustom/GRDBDeploymentTarget.xcconfig
@@ -1,4 +1,4 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0
IPHONEOS_DEPLOYMENT_TARGET = 10.0
MACOSX_DEPLOYMENT_TARGET = 10.10
TVOS_DEPLOYMENT_TARGET = 9.0
WATCHOS_DEPLOYMENT_TARGET = 2.0
2 changes: 1 addition & 1 deletion Support/GRDBDeploymentTarget.xcconfig
@@ -1,4 +1,4 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0
IPHONEOS_DEPLOYMENT_TARGET = 10.0
MACOSX_DEPLOYMENT_TARGET = 10.10
TVOS_DEPLOYMENT_TARGET = 9.0
WATCHOS_DEPLOYMENT_TARGET = 2.0
Expand Down
2 changes: 1 addition & 1 deletion Tests/CocoaPods/GRDBiOS-framework/Podfile
@@ -1,6 +1,6 @@
use_frameworks!
target 'iOS'
platform :ios, '9.0'
platform :ios, '10.0'
pod 'GRDB.swift', :path => '../../..'

post_install do |installer|
Expand Down
Expand Up @@ -251,7 +251,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -301,7 +301,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
Expand Down
2 changes: 1 addition & 1 deletion Tests/CocoaPods/GRDBiOS-static/Podfile
@@ -1,5 +1,5 @@
target 'iOS'
platform :ios, '9.0'
platform :ios, '10.0'
pod 'GRDB.swift', :path => '../../..'

post_install do |installer|
Expand Down
4 changes: 2 additions & 2 deletions Tests/CocoaPods/GRDBiOS-static/iOS.xcodeproj/project.pbxproj
Expand Up @@ -232,7 +232,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -282,7 +282,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
Expand Down

0 comments on commit 03a66af

Please sign in to comment.