We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15e5faf commit dd7ec49Copy full SHA for dd7ec49
java/kotlin-extractor/kotlin_plugin_versions.py
@@ -49,7 +49,7 @@ def get_single_version(fakeVersionOutput = None):
49
matching_minor_versions.sort(reverse = True)
50
51
for version in matching_minor_versions:
52
- if version <= current_version:
+ if version[0:3] <= current_version[0:3]:
53
return version_tuple_to_string(version)
54
55
return version_tuple_to_string(matching_minor_versions[-1])
0 commit comments