Skip to content

Commit ee1d1aa

Browse files
authored
Upper-bound swift-docc-plugin dependency version (#456)
Motivation: Building swift-nio-http2 with Swift 5.8 fails due to a compiler error when building swift-docc-plugin (swiftlang/swift-docc-plugin#94). Modifications: - Adjust the dependency version of swift-docc-plugin from `from: "1.0.0"` to `"1.0.0"..<"1.4.0"`. Result: Building swift-nio-http2 with Swift 5.8 will now be successful.
1 parent b5f7062 commit ee1d1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let package = Package(
2323
dependencies: [
2424
.package(url: "https://github.com/apple/swift-nio.git", from: "2.60.0"),
2525
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.2"),
26-
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
26+
.package(url: "https://github.com/apple/swift-docc-plugin", "1.0.0"..<"1.4.0"),
2727
],
2828
targets: [
2929
.executableTarget(

0 commit comments

Comments
 (0)