Skip to content

Commit 874f680

Browse files
committed
Update runner & test-runner to Scala 3.3 LTS
1 parent 374f800 commit 874f680

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

project/deps.sc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import mill._
33
import scalalib._
44

55
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
109
def scala3Lts = s"$scala3LtsPrefix.5" // the LTS version currently used in the build
10+
def runnerScala3 = scala3Lts
1111
def scala3NextPrefix = "3.7"
1212
def scala3Next = s"$scala3NextPrefix.0" // the newest/next version of Scala
1313
def scala3NextAnnounced = "3.6.4" // the newest/next version of Scala that's been announced
@@ -27,7 +27,7 @@ object Scala {
2727
val scala3MainVersions = (defaults ++ allScala3).distinct
2828
val mainVersions = (Seq(scala213) ++ scala3MainVersions).distinct
2929
val runnerScalaVersions = runnerScala3 +: allScala2
30-
val testRunnerScalaVersions = runnerScalaVersions ++ allScala3
30+
val testRunnerScalaVersions = (runnerScalaVersions ++ allScala3).distinct
3131

3232
def scalaJs = "1.19.0"
3333
def scalaJsCli = scalaJs // this must be compatible with the Scala.js version

0 commit comments

Comments
 (0)