Skip to content

Commit

Permalink
Pin docc to a version that works for older swift versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvl committed Aug 23, 2024
1 parent 09a67b6 commit 1a4d15c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
// Don't allow 1.4.x for now, appears to break with Swift 5.8 on Linux.
// https://github.com/swiftlang/swift-docc-plugin/issues/92
.package(url: "https://github.com/swiftlang/swift-docc-plugin", .upToNextMinor(from: "1.3.0")),
// .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
],
targets: [
.target(
Expand Down

0 comments on commit 1a4d15c

Please sign in to comment.