Skip to content

Commit d78a48c

Browse files
authored
Merge pull request #272 from mattrubin/bump-supported-os-versions
Bump deployment targets to the current version minus one
2 parents b00df04 + d990b9d commit d78a48c

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

.github/workflows/xcode.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ jobs:
1414
device: "iPhone 15 Pro Max"
1515
- xcode: 15.4
1616
runtime: "iOS 16.4"
17-
device: "iPhone 12 mini"
18-
- xcode: 15.4
19-
runtime: "iOS 15.5"
20-
device: "iPhone SE"
17+
device: "iPhone 8"
2118
steps:
2219
- uses: actions/checkout@v4
2320
with:
@@ -60,10 +57,7 @@ jobs:
6057
device: "Apple Watch Ultra 2 (49mm)"
6158
- xcode: 15.4
6259
runtime: "watchOS 9.4"
63-
device: "Apple Watch SE (44mm) (2nd generation)"
64-
- xcode: 15.4
65-
runtime: "watchOS 8.5"
66-
device: "Apple Watch Series 3 (38mm)"
60+
device: "Apple Watch Series 4 (40mm)"
6761
steps:
6862
- uses: actions/checkout@v4
6963
with:

OneTimePassword.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -576,11 +576,11 @@
576576
baseConfigurationReference = C996EC2C1A74D5830076B105 /* Debug.xcconfig */;
577577
buildSettings = {
578578
DEAD_CODE_STRIPPING = YES;
579-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
580-
MACOSX_DEPLOYMENT_TARGET = 10.15;
579+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
580+
MACOSX_DEPLOYMENT_TARGET = 13.0;
581581
SWIFT_TREAT_WARNINGS_AS_ERRORS = NO;
582582
SWIFT_VERSION = 5.0;
583-
WATCHOS_DEPLOYMENT_TARGET = 6.0;
583+
WATCHOS_DEPLOYMENT_TARGET = 9.0;
584584
};
585585
name = Debug;
586586
};
@@ -589,11 +589,11 @@
589589
baseConfigurationReference = C996EC2E1A74D5830076B105 /* Release.xcconfig */;
590590
buildSettings = {
591591
DEAD_CODE_STRIPPING = YES;
592-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
593-
MACOSX_DEPLOYMENT_TARGET = 10.15;
592+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
593+
MACOSX_DEPLOYMENT_TARGET = 13.0;
594594
SWIFT_TREAT_WARNINGS_AS_ERRORS = NO;
595595
SWIFT_VERSION = 5.0;
596-
WATCHOS_DEPLOYMENT_TARGET = 6.0;
596+
WATCHOS_DEPLOYMENT_TARGET = 9.0;
597597
};
598598
name = Release;
599599
};

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import PackageDescription
44
let package = Package(
55
name: "OneTimePassword",
66
platforms: [
7-
.iOS(.v13),
8-
.macOS(.v10_15),
9-
.watchOS(.v6),
7+
.iOS(.v16),
8+
.macOS(.v13),
9+
.watchOS(.v9),
1010
],
1111
products: [
1212
.library(

0 commit comments

Comments
 (0)