Skip to content

Support swift-syntax version <602.0.0 #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 14, 2025
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/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ permissions:
contents: read

env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
DEVELOPER_DIR: /Applications/Xcode_16.3.app

jobs:
build:
name: Build & Test
runs-on: macos-13
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Select Xcode 15
run: sudo xcode-select -s /Applications/Xcode_15.0.app
- name: Select Xcode 16
run: sudo xcode-select -s /Applications/Xcode_16.3.app

- name: Build
run: swift build
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Install Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: '5.10.1'
swift-version: '6.1.0'

- uses: actions/checkout@v4

Expand Down
34 changes: 26 additions & 8 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/swiftlang/swift-syntax.git",
"509.0.0"..<"511.0.0"
"509.0.0"..<"602.0.0"
),
.package(
url: "https://github.com/p-x9/swift-literal-type-inference.git",
from: "0.3.0"
from: "0.4.0"
),
.package(
url: "https://github.com/p-x9/swift-object-association.git",
from: "0.5.0"
),
.package(
url: "https://github.com/pointfreeco/swift-macro-testing.git",
from: "0.5.1"
from: "0.6.1"
)

],
Expand Down