We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2c4cf1b + 585b694 commit 018e9c0Copy full SHA for 018e9c0
extensions/ql-vscode/src/distribution.ts
@@ -39,9 +39,9 @@ const DEFAULT_DISTRIBUTION_REPOSITORY_NAME = "codeql-cli-binaries";
39
* This applies to both extension-managed and CLI distributions.
40
*/
41
export const DEFAULT_DISTRIBUTION_VERSION_CONSTRAINT: VersionConstraint = {
42
- description: "2.0.*",
+ description: "2.*.*",
43
isVersionCompatible: (v: Version) => {
44
- return v.majorVersion === 2 && v.minorVersion === 0
+ return v.majorVersion === 2 && v.minorVersion >= 0
45
}
46
47
0 commit comments