Skip to content

Commit d984f6e

Browse files
Fix renovate config (#734)
* Swap package rules for RavenDB.Client versions * Json5
1 parent 2182a08 commit d984f6e

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/renovate.json5

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
{
22
packageRules: [
33
{
4-
description: "Keep non-Latest projects on RavenDB.Client v6.x",
5-
matchFiles: ["**/*.csproj"],
6-
excludeFiles: ["**/*.Latest.*.csproj"],
4+
description: "Allow .Latest. projects to use RavenDB.Client v7.x and above",
5+
matchFiles: ["**/*.Latest.*.csproj"],
76
matchPackageNames: ["RavenDB.Client"],
8-
allowedVersions: ">=6.0.0 <7.0.0"
7+
allowedVersions: ">=7.0.0",
98
},
109
{
11-
description: "Allow .Latest. projects to use RavenDB.Client v7.x and above",
12-
matchFiles: ["**/*.Latest.*.csproj"],
10+
description: "Keep non-Latest projects on RavenDB.Client v6.x",
11+
matchFiles: ["**/*.csproj"],
1312
matchPackageNames: ["RavenDB.Client"],
14-
allowedVersions: ">=7.0.0"
15-
}
16-
]
17-
}
13+
allowedVersions: ">=6.0.0 <7.0.0",
14+
},
15+
],
16+
}

0 commit comments

Comments
 (0)