Kotlin: 1.8.0 changes

This commit is contained in:
Ian Lynagh
2023-01-09 19:52:31 +00:00
parent c4119761cc
commit 20b35e5d02
5 changed files with 6 additions and 3 deletions

View File

@@ -46,6 +46,9 @@ sourceSets {
"utils/versions/v_1_7_20-Beta/createImplicitParameterDeclarationWithWrappedDescriptor.kt",
"utils/versions/v_1_7_20-Beta/allOverriddenIncludingSelf.kt",
"utils/versions/v_1_8_0/ExperimentalCompilerApi.kt",
"utils/versions/v_1_8_0/FirIncompatiblePluginAPI.kt",
]
}
}

View File

@@ -22,10 +22,10 @@ def version_string_to_tuple(version):
return tuple([int(m.group(i)) for i in range(1, 4)] + [m.group(4)])
# Version number used by CI. It needs to be one of the versions in many_versions.
ci_version = '1.8.0-Beta'
ci_version = '1.8.0'
# Version numbers in the list need to be in semantically increasing order
many_versions = [ '1.4.32', '1.5.0', '1.5.10', '1.5.20', '1.5.30', '1.6.0', '1.6.20', '1.7.0', '1.7.20', '1.8.0-Beta' ]
many_versions = [ '1.4.32', '1.5.0', '1.5.10', '1.5.20', '1.5.30', '1.6.0', '1.6.20', '1.7.0', '1.7.20', '1.8.0' ]
many_versions_tuples = [version_string_to_tuple(v) for v in many_versions]