From 7ff7e0567568ac46c1a7b850f33541142866c520 Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Thu, 21 Nov 2024 23:48:52 -0800 Subject: [PATCH] =?UTF-8?q?Use=20exact:=20rather=20than=20.exact(=E2=80=A6?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index fb94dd9b4..6373fbc11 100644 --- a/Package.swift +++ b/Package.swift @@ -44,7 +44,7 @@ var dependencies: [Package.Dependency] = [ if shouldIncludeDocCPlugin { // Versions 1.4.0 and 1.4.1 are failing to compile, so we are pinning it to 1.3.0 for now // https://github.com/RevenueCat/purchases-ios/pull/4216 - dependencies.append(.package(url: "https://github.com/apple/swift-docc-plugin", .exact("1.3.0"))) + dependencies.append(.package(url: "https://github.com/apple/swift-docc-plugin", exact: "1.3.0")) } // See https://github.com/RevenueCat/purchases-ios/pull/2989