From 8a705ddca75791f5857849ec86913878b9adf96c Mon Sep 17 00:00:00 2001 From: Andreas Bauer Date: Thu, 29 Aug 2024 13:58:01 +0200 Subject: [PATCH] Be less restrictive about the chosen swiftlint version (#22) # Be less restrictive about the chosen swiftlint version ## :recycle: Current situation & Problem This PR loosens the restrictions on the swiftlint version. ## :gear: Release Notes * Allow upToNextMajor swiftlint versions ## :books: Documentation -- ## :white_check_mark: Testing -- ## :pencil: Code of Conduct & Contributing Guidelines By submitting creating this pull request, you agree to follow our [Code of Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md): - [x] I agree to follow the [Code of Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md). --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index a35f654..281b39b 100644 --- a/Package.swift +++ b/Package.swift @@ -125,7 +125,7 @@ func swiftLintPlugin() -> [Target.PluginUsage] { func swiftLintPackage() -> [PackageDescription.Package.Dependency] { if ProcessInfo.processInfo.environment["SPEZI_DEVELOPMENT_SWIFTLINT"] != nil { - [.package(url: "https://github.com/realm/SwiftLint.git", .upToNextMinor(from: "0.55.1"))] + [.package(url: "https://github.com/realm/SwiftLint.git", from: "0.55.1")] } else { [] }