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 948b02d0ac
commit 5bf5706ac9
6 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
import PackageDescription import PackageDescription
var dependencies: [Package.Dependency] = [ 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")), .package(url: "https://github.com/Ranchero-Software/RSDatabase.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Ranchero-Software/RSParser.git", .upToNextMajor(from: "2.0.2")), .package(url: "https://github.com/Ranchero-Software/RSParser.git", .upToNextMajor(from: "2.0.2")),
.package(url: "https://github.com/Ranchero-Software/RSWeb.git", .upToNextMajor(from: "1.0.0")), .package(url: "https://github.com/Ranchero-Software/RSWeb.git", .upToNextMajor(from: "1.0.0")),

View File

@ -11,7 +11,7 @@ let package = Package(
targets: ["Articles"]), targets: ["Articles"]),
], ],
dependencies: [ dependencies: [
.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")),
], ],
targets: [ targets: [
.target( .target(

View File

@ -4,7 +4,7 @@
import PackageDescription import PackageDescription
var dependencies: [Package.Dependency] = [ 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")), .package(url: "https://github.com/Ranchero-Software/RSDatabase.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Ranchero-Software/RSParser.git", .upToNextMajor(from: "2.0.2")), .package(url: "https://github.com/Ranchero-Software/RSParser.git", .upToNextMajor(from: "2.0.2")),
] ]

View File

@ -4963,7 +4963,7 @@
isa = XCRemoteSwiftPackageReference; isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/Ranchero-Software/RSCore.git"; repositoryURL = "https://github.com/Ranchero-Software/RSCore.git";
requirement = { requirement = {
kind = upToNextMajorVersion; kind = upToNextMinorVersion;
minimumVersion = 1.0.0; minimumVersion = 1.0.0;
}; };
}; };

View File

@ -51,8 +51,8 @@
"repositoryURL": "https://github.com/microsoft/plcrashreporter.git", "repositoryURL": "https://github.com/microsoft/plcrashreporter.git",
"state": { "state": {
"branch": null, "branch": null,
"revision": "6b27393cad517c067dceea85fadf050e70c4ceaa", "revision": "b1a342da19ed9b3af61ea2efa7656c2af30aeb7c",
"version": "1.10.1" "version": "1.11.0"
} }
}, },
{ {

View File

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