Skip to content

Commit 924814b

Browse files
package: Bump swift-format and swift-syntax to 508.0.1 (#4)
### Motivation Our swift-format dependency (508.0.0) had an `.upToNextMinor` version dependency on swift-argument-parser, which presented challenges for adopters of swift-openapi-generator who wanted to also use newer versions of swift-argument-parser. There's just been a release of swift-format (and swift-syntax) that relaxes its dependency on swift-argument-parser to an `.upToNextMajor`. ### Modifications - Bump swift-format and swift-syntax to 508.0.1. ### Result Adopters will be able to use newer versions of swift-argument-parser when using swift-openapi-generator. ### Test Plan CI. Signed-off-by: Si Beaumont <[email protected]>
1 parent 9c3e440 commit 924814b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ let package = Package(
2929
// Generate Swift code
3030
.package(
3131
url: "https://github.com/apple/swift-syntax.git",
32-
from: "508.0.0"
32+
from: "508.0.1"
3333
),
3434

3535
// Format Swift code
3636
.package(
3737
url: "https://github.com/apple/swift-format.git",
38-
from: "508.0.0"
38+
from: "508.0.1"
3939
),
4040

4141
// General algorithms

0 commit comments

Comments
 (0)