Skip to content

Commit f3c5c01

Browse files
committed
Kotlin: Drop support for 1.4.32
We never claimed to support anything < 1.5.0, and compiling with -language-version 1.4 fails as it's not meant to support sealed classes. If we build 1.4.32 with -language-version 1.5 using a 2.0 compiler, then the resulting plugin also fails.
1 parent 30d7f0c commit f3c5c01

21 files changed

+1
-1
lines changed

java/kotlin-extractor/kotlin_plugin_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def version_string_to_tuple(version):
2424
# Version number used by CI.
2525
ci_version = '1.9.0'
2626

27-
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', '1.9.0-Beta', '1.9.20-Beta' ]
27+
many_versions = [ '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', '1.9.0-Beta', '1.9.20-Beta' ]
2828

2929
many_versions_tuples = [version_string_to_tuple(v) for v in many_versions]
3030

0 commit comments

Comments
 (0)