From a94ca309f2e26a2b27867d186be61c1f96c5194d Mon Sep 17 00:00:00 2001 From: Rauhul Varma Date: Mon, 2 Jun 2025 14:34:28 -0700 Subject: [PATCH] Remove upper bound limit on docc plugin Updates check-docs.sh to use any 1.x.y version of `swift-docc-plugin`. This fixes a bug where docs can't be generated using flags like: `--symbol-graph-minimum-access-level` etc. --- .github/workflows/scripts/check-docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/check-docs.sh b/.github/workflows/scripts/check-docs.sh index c3d41593..5c4fb026 100755 --- a/.github/workflows/scripts/check-docs.sh +++ b/.github/workflows/scripts/check-docs.sh @@ -43,7 +43,7 @@ else cat <> "$package_file" package.dependencies.append( - .package(url: "https://github.com/swiftlang/swift-docc-plugin", "1.0.0"..<"1.4.0") + .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0") ) EOF done