Skip to content

Commit

Permalink
Merge pull request #272 from mattrubin/bump-supported-os-versions
Browse files Browse the repository at this point in the history
Bump deployment targets to the current version minus one
  • Loading branch information
mattrubin authored Aug 19, 2024
2 parents b00df04 + d990b9d commit d78a48c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 17 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/xcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ jobs:
device: "iPhone 15 Pro Max"
- xcode: 15.4
runtime: "iOS 16.4"
device: "iPhone 12 mini"
- xcode: 15.4
runtime: "iOS 15.5"
device: "iPhone SE"
device: "iPhone 8"
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -60,10 +57,7 @@ jobs:
device: "Apple Watch Ultra 2 (49mm)"
- xcode: 15.4
runtime: "watchOS 9.4"
device: "Apple Watch SE (44mm) (2nd generation)"
- xcode: 15.4
runtime: "watchOS 8.5"
device: "Apple Watch Series 3 (38mm)"
device: "Apple Watch Series 4 (40mm)"
steps:
- uses: actions/checkout@v4
with:
Expand Down
12 changes: 6 additions & 6 deletions OneTimePassword.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -576,11 +576,11 @@
baseConfigurationReference = C996EC2C1A74D5830076B105 /* Debug.xcconfig */;
buildSettings = {
DEAD_CODE_STRIPPING = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 10.15;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
MACOSX_DEPLOYMENT_TARGET = 13.0;
SWIFT_TREAT_WARNINGS_AS_ERRORS = NO;
SWIFT_VERSION = 5.0;
WATCHOS_DEPLOYMENT_TARGET = 6.0;
WATCHOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
Expand All @@ -589,11 +589,11 @@
baseConfigurationReference = C996EC2E1A74D5830076B105 /* Release.xcconfig */;
buildSettings = {
DEAD_CODE_STRIPPING = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 10.15;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
MACOSX_DEPLOYMENT_TARGET = 13.0;
SWIFT_TREAT_WARNINGS_AS_ERRORS = NO;
SWIFT_VERSION = 5.0;
WATCHOS_DEPLOYMENT_TARGET = 6.0;
WATCHOS_DEPLOYMENT_TARGET = 9.0;
};
name = Release;
};
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import PackageDescription
let package = Package(
name: "OneTimePassword",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.watchOS(.v6),
.iOS(.v16),
.macOS(.v13),
.watchOS(.v9),
],
products: [
.library(
Expand Down

0 comments on commit d78a48c

Please sign in to comment.