Skip to content

Commit 8b8b961

Browse files
Kotlin: enable 2.4.20-RC support
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 96ac5ba commit 8b8b961

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

java/kotlin-extractor/versions.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ VERSIONS = [
1212
"2.3.0",
1313
"2.3.20",
1414
"2.4.0",
15+
"2.4.20-RC",
1516
]
1617

1718
def _version_to_tuple(v):

java/ql/integration-tests/kotlin/all-platforms/diagnostics/kotlin-version-too-new/diagnostics.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"markdownMessage": "The Kotlin version installed (`999.999.999`) is too recent for this version of CodeQL. Install a version lower than 2.4.20.",
2+
"markdownMessage": "The Kotlin version installed (`2.4.20`) is too recent for this version of CodeQL. Install a version lower than 2.4.20.",
33
"severity": "error",
44
"source": {
55
"extractorName": "java",

java/ql/integration-tests/kotlin/all-platforms/diagnostics/kotlin-version-too-new/fake-kotlinc-source/kotlin/KotlinVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
public class KotlinVersion {
44

5-
public static String CURRENT = "999.999.999";
5+
public static String CURRENT = "2.4.20";
66

77
}

0 commit comments

Comments
 (0)