Skip to content

Commit b3a2d97

Browse files
committed
allow fetching properties from SNAPSHOTs until a stable release is cut
1 parent 677129f commit b3a2d97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scalafix-interfaces/src/main/java/scalafix/internal/interfaces/ScalafixCoursier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static List<URL> latestScalafixPropertiesJars(
6767
.getAvailable()
6868
.stream()
6969
// Ignore RC & SNAPSHOT versions
70-
.filter(v -> !v.contains("-"))
70+
.filter(v -> v.startsWith("0.14.2+") || !v.contains("-"))
7171
.reduce((older, newer) -> newer)
7272
.orElseThrow(() -> new ScalafixException("Could not find any stable version for " + module));
7373

0 commit comments

Comments
 (0)