Skip to content

Commit 1a4d15c

Browse files
committed
Pin docc to a version that works for older swift versions.
1 parent 09a67b6 commit 1a4d15c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ let package = Package(
3232
),
3333
],
3434
dependencies: [
35-
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
35+
// Don't allow 1.4.x for now, appears to break with Swift 5.8 on Linux.
36+
// https://github.com/swiftlang/swift-docc-plugin/issues/92
37+
.package(url: "https://github.com/swiftlang/swift-docc-plugin", .upToNextMinor(from: "1.3.0")),
38+
// .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
3639
],
3740
targets: [
3841
.target(

0 commit comments

Comments
 (0)