From 380605351bfb81a218215a19b61afcfda64c33c3 Mon Sep 17 00:00:00 2001 From: Tomas Linhart Date: Mon, 15 May 2023 12:48:29 +1000 Subject: [PATCH] Change CryptoSwift not to require the exact version Requiring only 1.3.3 is very restrictive if the package is used together with other packages needing CryptoSwift because they almost always use a different version. --- Package.resolved | 4 ++-- Package.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Package.resolved b/Package.resolved index 900fb44..97e47af 100644 --- a/Package.resolved +++ b/Package.resolved @@ -6,8 +6,8 @@ "repositoryURL": "https://github.com/krzyzanowskim/CryptoSwift.git", "state": { "branch": null, - "revision": "e2bc81be54d71d566a52ca17c3983d141c30aa70", - "version": "1.3.3" + "revision": "eee9ad754926c40a0f7e73f152357d37b119b7fa", + "version": "1.7.1" } }, { diff --git a/Package.swift b/Package.swift index 98f46e7..65437e2 100644 --- a/Package.swift +++ b/Package.swift @@ -12,7 +12,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/1024jp/GzipSwift", from: "5.1.0"), - .package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .exact("1.3.3")), + .package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.3.3"), .package(url: "https://github.com/kylef/PathKit.git", from: "1.0.1"), .package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.0"), ],