Skip to content

Commit 2f05668

Browse files
authored
🔧 Use Xcode 16 on CI (#38)
1 parent d0fbb22 commit 2f05668

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

‎.github/xcode-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.2
1+
16

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
## main
1111
<!--- - <description> (#<PR_number, kudos to @<author>) --->
12+
- Use Xcode16, increase deployment target to iOS 12 and macOS 10.13 ([#38](https://github.com/AckeeCZ/Reqres/pull/38), kudos to @olejnjak)
1213

1314
## 3.2.1
1415
- Change Reqres class name to ReqresLogger ([#36](https://github.com/AckeeCZ/Reqres/pull/36), kudos to @olejnjak)

‎Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let package = Package(
55
name: "Reqres",
66
platforms: [
77
.iOS(.v11),
8-
.macOS(.v10_12)
8+
.macOS(.v10_13)
99
],
1010
products: [
1111
.library(name: "Reqres", targets: ["Reqres"]),

‎Reqres.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Logs every request app makes, works great with Alamofire.
99
s.license = { :type => 'MIT', :file => 'LICENSE' }
1010
s.author = { 'Ackee' => '[email protected]' }
1111
s.source = { :git => 'https://github.com/AckeeCZ/Reqres.git', :tag => s.version.to_s }
12-
s.ios.deployment_target = '11.0'
12+
s.ios.deployment_target = '12.0'
1313
s.swift_version = '5.0'
1414
s.source_files = 'Sources/Reqres/*.swift'
1515
end

‎Reqres.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@
390390
GCC_WARN_UNUSED_FUNCTION = YES;
391391
GCC_WARN_UNUSED_VARIABLE = YES;
392392
INFOPLIST_FILE = "$SRCROOT/Supporting files/$(TARGET_NAME).plist";
393-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
393+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
394394
ONLY_ACTIVE_ARCH = YES;
395395
SWIFT_VERSION = 5.0;
396396
};
@@ -426,7 +426,7 @@
426426
GCC_WARN_UNUSED_FUNCTION = YES;
427427
GCC_WARN_UNUSED_VARIABLE = YES;
428428
INFOPLIST_FILE = "$SRCROOT/Supporting files/$(TARGET_NAME).plist";
429-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
429+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
430430
SWIFT_VERSION = 5.0;
431431
};
432432
name = Release;

0 commit comments

Comments
 (0)