Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/matrix.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"xcode_version": [
"15.2",
"15.4"
"16.4"
],
"swift_version": [
"5.9",
"5.10"
"5.10",
"6.0",
"6.1"
],
"platform": [
"platform=macOS",
"platform=macOS,variant=Mac Catalyst",
"platform=iOS Simulator,name=iPhone 15 Pro",
"platform=iOS Simulator,name=iPhone 16 Pro",
"platform=tvOS Simulator,name=Apple TV 4K (3rd generation)"
]
}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
test-macos:
name: Test
needs: extract-matrix
runs-on: macOS-14
runs-on: macOS-15
concurrency:
group: ${{ github.head_ref }}-${{ github.workflow }}-${{ matrix.xcode }}-${{ matrix.destination }}
cancel-in-progress: true
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
xcodebuild_result:
name: Export xcodebuild test result
needs: test-macos
runs-on: macOS-14
runs-on: macOS-15
steps:
- uses: actions/download-artifact@v6
with:
Expand Down
11 changes: 5 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.9
// swift-tools-version:5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand Down Expand Up @@ -58,16 +58,15 @@ if isDevelop {
// MARK: - Upcoming feature flags for Swift 6
package.targets.forEach {
$0.swiftSettings = [
// .forwardTrailingClosures,
.forwardTrailingClosures,
.existentialAny,
.bareSlashRegexLiterals,
.conciseMagicFile,
.importObjcForwardDeclarations,
.disableOutwardActorInference,
// TODO: enable when 5.9 dropped
// .deprecateApplicationMain,
// .isolatedDefaultValues,
// .globalConcurrency,
.deprecateApplicationMain,
.isolatedDefaultValues,
.globalConcurrency,
]
}

Expand Down