Restrict RSCore version so that we don't pick up version 1.1 when it happens

This commit is contained in:
Maurice Parker
2022-11-01 20:24:58 -05:00
parent 83403ac5e1
commit 7f531282d6
6 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
import PackageDescription
var dependencies: [Package.Dependency] = [
.package(url: "https://github.com/Ranchero-Software/RSCore.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Ranchero-Software/RSCore.git", .upToNextMinor(from: "1.0.0")),
.package(url: "https://github.com/Ranchero-Software/RSDatabase.git", .upToNextMajor(from: "1.0.0")),
]