Skip to content

Commit 5ea2990

Browse files
authored
Merge pull request #1095 from stephencelis/revert-osx-deployment
Move OSX deployment target back to 10.10
2 parents a3e1724 + 47c7004 commit 5ea2990

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Build and test
22
on: [push, pull_request]
33
env:
44
IOS_SIMULATOR: iPhone 12
5-
IOS_VERSION: 14.4
5+
IOS_VERSION: "15.0"
66
jobs:
77
build:
8-
runs-on: macos-latest
8+
runs-on: macos-11
99
steps:
1010
- uses: actions/checkout@v2
1111
- name: Install

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* Support for custom SQL aggregates ([#881][])
66
* Restore previous iteration behavior ([#1075][])
77
* Fix compilation on Linux ([#1077][])
8+
* Align platform versions in SPM manifest and Xcode ([#1094][])
9+
* Revert OSX deployment target back to 10.10 ([#1095][])
810

911
0.13.0 (22-08-2021), [diff][diff-0.13.0]
1012
========================================
@@ -128,3 +130,5 @@
128130
[#919]: https://github.com/stephencelis/SQLite.swift/pull/919
129131
[#1075]: https://github.com/stephencelis/SQLite.swift/pull/1075
130132
[#1077]: https://github.com/stephencelis/SQLite.swift/issues/1077
133+
[#1094]: https://github.com/stephencelis/SQLite.swift/pull/1094
134+
[#1095]: https://github.com/stephencelis/SQLite.swift/pull/1095

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
BUILD_TOOL = xcodebuild
22
BUILD_SCHEME = SQLite Mac
33
IOS_SIMULATOR = iPhone 12
4-
IOS_VERSION = 14.4
4+
IOS_VERSION = 15.0
55
ifeq ($(BUILD_SCHEME),SQLite iOS)
66
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)" -destination "platform=iOS Simulator,name=$(IOS_SIMULATOR),OS=$(IOS_VERSION)"
77
else

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let package = Package(
55
name: "SQLite.swift",
66
platforms: [
77
.iOS(.v9),
8-
.macOS(.v10_15),
8+
.macOS(.v10_10),
99
.watchOS(.v3),
1010
.tvOS(.v9)
1111
],

SQLite.swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Pod::Spec.new do |s|
2020

2121
ios_deployment_target = '9.0'
2222
tvos_deployment_target = '9.1'
23-
osx_deployment_target = '10.15'
23+
osx_deployment_target = '10.10'
2424
watchos_deployment_target = '3.0'
2525

2626
s.ios.deployment_target = ios_deployment_target

SQLite.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,7 +1245,7 @@
12451245
GCC_WARN_UNUSED_FUNCTION = YES;
12461246
GCC_WARN_UNUSED_VARIABLE = YES;
12471247
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1248-
MACOSX_DEPLOYMENT_TARGET = 10.15;
1248+
MACOSX_DEPLOYMENT_TARGET = 10.10;
12491249
MTL_ENABLE_DEBUG_INFO = YES;
12501250
ONLY_ACTIVE_ARCH = YES;
12511251
PRODUCT_NAME = "";
@@ -1304,7 +1304,7 @@
13041304
GCC_WARN_UNUSED_FUNCTION = YES;
13051305
GCC_WARN_UNUSED_VARIABLE = YES;
13061306
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1307-
MACOSX_DEPLOYMENT_TARGET = 10.15;
1307+
MACOSX_DEPLOYMENT_TARGET = 10.10;
13081308
MTL_ENABLE_DEBUG_INFO = NO;
13091309
PRODUCT_NAME = "";
13101310
SDKROOT = iphoneos;

Tests/SPM/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
name: "test",
88
platforms: [
99
.iOS(.v9),
10-
.macOS(.v10_15),
10+
.macOS(.v10_10),
1111
.watchOS(.v3),
1212
.tvOS(.v9)
1313
],

0 commit comments

Comments
 (0)