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 677129f commit b3a2d97Copy full SHA for b3a2d97
scalafix-interfaces/src/main/java/scalafix/internal/interfaces/ScalafixCoursier.java
@@ -67,7 +67,7 @@ public static List<URL> latestScalafixPropertiesJars(
67
.getAvailable()
68
.stream()
69
// Ignore RC & SNAPSHOT versions
70
- .filter(v -> !v.contains("-"))
+ .filter(v -> v.startsWith("0.14.2+") || !v.contains("-"))
71
.reduce((older, newer) -> newer)
72
.orElseThrow(() -> new ScalafixException("Could not find any stable version for " + module));
73
0 commit comments