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 fe8a5fd commit 29c1f36Copy full SHA for 29c1f36
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.startsWith("0.14.2+") || !v.contains("-"))
+ .filter(v -> !v.contains("-"))
71
.reduce((older, newer) -> newer)
72
.orElseThrow(() -> new ScalafixException("Could not find any stable version for " + module));
73
0 commit comments