From 485b4a92fc88c3b957317628fb779027a38f33dd Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Mon, 16 Sep 2024 16:55:54 -0700 Subject: [PATCH] Use exact: rather than .exact(...) --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 1726968ab2..265c3ce588 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,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