File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ import mill._
3
3
import scalalib ._
4
4
5
5
object Scala {
6
- def scala212 = " 2.12.20"
7
- def scala213 = " 2.13.16"
8
- def runnerScala3 = " 3.0.2" // the newest version that is compatible with all Scala 3.x versions
9
- def scala3LtsPrefix = " 3.3" // used for the LTS version tags
6
+ def scala212 = " 2.12.20"
7
+ def scala213 = " 2.13.16"
8
+ def scala3LtsPrefix = " 3.3" // used for the LTS version tags
10
9
def scala3Lts = s " $scala3LtsPrefix.5 " // the LTS version currently used in the build
10
+ def runnerScala3 = scala3Lts
11
11
def scala3NextPrefix = " 3.7"
12
12
def scala3Next = s " $scala3NextPrefix.0 " // the newest/next version of Scala
13
13
def scala3NextAnnounced = " 3.6.4" // the newest/next version of Scala that's been announced
@@ -27,7 +27,7 @@ object Scala {
27
27
val scala3MainVersions = (defaults ++ allScala3).distinct
28
28
val mainVersions = (Seq (scala213) ++ scala3MainVersions).distinct
29
29
val runnerScalaVersions = runnerScala3 +: allScala2
30
- val testRunnerScalaVersions = runnerScalaVersions ++ allScala3
30
+ val testRunnerScalaVersions = ( runnerScalaVersions ++ allScala3).distinct
31
31
32
32
def scalaJs = " 1.19.0"
33
33
def scalaJsCli = scalaJs // this must be compatible with the Scala.js version
You can’t perform that action at this time.
0 commit comments