Skip to content

Commit c197b5a

Browse files
authored
Support 2.12.14 in build.sbt (#289)
There were some commits trying to introduce 2.12.14 but none of those change it here in the supported versions.
1 parent 80afc1b commit c197b5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ lazy val defaults = Seq(
5050
// 2.11.6 is the first to be supported and we skip 2.11.9 and 2.11.10
5151
val supportedScala211Versions = Seq("2.11.6", "2.11.7", "2.11.8", "2.11.11", "2.11.12")
5252
// Scala 2.12.[0-2] are not supported
53-
val supportedScala212Versions = (3 to 13).map(p => s"2.12.$p")
53+
val supportedScala212Versions = (3 to 14).map(p => s"2.12.$p")
5454
val supportedScala213Versions = (0 to 6).map(p => s"2.13.$p")
5555
supportedScala211Versions ++ supportedScala212Versions ++ supportedScala213Versions
5656
},

0 commit comments

Comments
 (0)