Skip to content

Commit ef8ceec

Browse files
committed
Bump main to 604.0.0
We've branched for release/6.3, bump main up to 6.4.
1 parent 32c670a commit ef8ceec

File tree

5 files changed

+32
-2
lines changed

5 files changed

+32
-2
lines changed

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
required: true
1515
swift_syntax_version:
1616
type: string
17-
default: 603.0.0
17+
default: 604.0.0
1818
description: "swift-syntax version"
1919
# The version of swift-syntax to tag. If this is a prerelease, `-prerelease-<date>` is added to this version.
2020
required: true

BUILD.bazel

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ swift_syntax_library(
223223
":SwiftSyntax601",
224224
":SwiftSyntax602",
225225
":SwiftSyntax603",
226+
":SwiftSyntax604",
226227
":_SwiftSyntaxCShims",
227228
],
228229
)
@@ -269,6 +270,13 @@ swift_syntax_library(
269270
],
270271
)
271272

273+
swift_syntax_library(
274+
name = "SwiftSyntax604",
275+
srcs = glob(["Sources/VersionMarkerModules/SwiftSyntax604/**/*.swift"]),
276+
deps = [
277+
],
278+
)
279+
272280
swift_syntax_library(
273281
name = "SwiftSyntaxBuilder",
274282
deps = [

Package.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ let package = Package(
231231
name: "SwiftSyntax",
232232
dependencies: [
233233
"_SwiftSyntaxCShims", "SwiftSyntax509", "SwiftSyntax510", "SwiftSyntax600", "SwiftSyntax601", "SwiftSyntax602",
234-
"SwiftSyntax603",
234+
"SwiftSyntax603", "SwiftSyntax604"
235235
],
236236
exclude: ["CMakeLists.txt"],
237237
swiftSettings: swiftSyntaxSwiftSettings
@@ -275,6 +275,11 @@ let package = Package(
275275
path: "Sources/VersionMarkerModules/SwiftSyntax603"
276276
),
277277

278+
.target(
279+
name: "SwiftSyntax604",
280+
path: "Sources/VersionMarkerModules/SwiftSyntax604"
281+
),
282+
278283
// MARK: SwiftSyntaxBuilder
279284

280285
.target(

Sources/VersionMarkerModules/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ add_library(${SWIFTSYNTAX_TARGET_NAMESPACE}SwiftSyntax602 STATIC
2020
SwiftSyntax602/Empty.swift)
2121
add_library(${SWIFTSYNTAX_TARGET_NAMESPACE}SwiftSyntax603 STATIC
2222
SwiftSyntax603/Empty.swift)
23+
add_library(${SWIFTSYNTAX_TARGET_NAMESPACE}SwiftSyntax604 STATIC
24+
SwiftSyntax604/Empty.swift)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift.org open source project
4+
//
5+
// Copyright (c) 2014 - 2025 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See https://swift.org/LICENSE.txt for license information
9+
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
//
11+
//===----------------------------------------------------------------------===//
12+
13+
// The SwiftSyntax604 module is intentionally empty.
14+
// It serves as an indicator which version of swift-syntax a package is building against.
15+
// See the 'Macro Versioning.md' document for more details.

0 commit comments

Comments
 (0)