Skip to content

Commit

Permalink
🔧 Use Xcode 16 on CI (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak authored Oct 5, 2024
1 parent d0fbb22 commit 2f05668
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/xcode-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.2
16
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

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

## 3.2.1
- Change Reqres class name to ReqresLogger ([#36](https://github.com/AckeeCZ/Reqres/pull/36), kudos to @olejnjak)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let package = Package(
name: "Reqres",
platforms: [
.iOS(.v11),
.macOS(.v10_12)
.macOS(.v10_13)
],
products: [
.library(name: "Reqres", targets: ["Reqres"]),
Expand Down
2 changes: 1 addition & 1 deletion Reqres.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Logs every request app makes, works great with Alamofire.
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ackee' => 'info@ackee.cz' }
s.source = { :git => 'https://github.com/AckeeCZ/Reqres.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = 'Sources/Reqres/*.swift'
end
4 changes: 2 additions & 2 deletions Reqres.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = "$SRCROOT/Supporting files/$(TARGET_NAME).plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
ONLY_ACTIVE_ARCH = YES;
SWIFT_VERSION = 5.0;
};
Expand Down Expand Up @@ -426,7 +426,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = "$SRCROOT/Supporting files/$(TARGET_NAME).plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
SWIFT_VERSION = 5.0;
};
name = Release;
Expand Down

0 comments on commit 2f05668

Please sign in to comment.