From 9855e8de2ea4711fbd02786e89cc6d5822b9a09a Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Fri, 29 May 2026 15:53:10 +0200 Subject: [PATCH] Run tests for Scala 3.3.8-RC2 --- project/deps/package.mill | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/project/deps/package.mill b/project/deps/package.mill index 7ef86eb917..b0fd2113f5 100644 --- a/project/deps/package.mill +++ b/project/deps/package.mill @@ -13,15 +13,16 @@ object Cli { } object Scala { - def scala212 = "2.12.21" - def scala213 = "2.13.18" - def scala3LtsPrefix = "3.3" // used for the LTS version tags - def scala3Lts = s"$scala3LtsPrefix.7" // the LTS version currently used in the build - def runnerScala3 = scala3Lts - def scala3NextPrefix = "3.8" - def scala3Next = s"$scala3NextPrefix.3" // the newest/next version of Scala - def scala3NextAnnounced = s"$scala3NextPrefix.2" // the newest/next version of Scala that's been announced - def scala3NextRc = "3.8.4-RC3" // the latest RC version of Scala Next + def scala212 = "2.12.21" + def scala213 = "2.13.18" + def scala3LtsPrefix = "3.3" // used for the LTS version tags + def scala3Lts = s"$scala3LtsPrefix.8-RC2" // the LTS version currently used in the build + def runnerScala3 = scala3Lts + def scala3NextPrefix = "3.8" + def scala3Next = s"$scala3NextPrefix.3" // the newest/next version of Scala + def scala3NextAnnounced = + s"$scala3NextPrefix.2" // the newest/next version of Scala that's been announced + def scala3NextRc = "3.8.4-RC3" // the latest RC version of Scala Next def scala3NextRcAnnounced = "3.8.4-RC2" // the latest announced RC version of Scala Next // The Scala version used to build the CLI itself. @@ -114,7 +115,7 @@ object TestDeps { object Deps { object Versions { - def argonautShapeless = "1.3.1" + def argonautShapeless = "1.3.1" // jni-utils version may need to be sync-ed when bumping the coursier version def coursierDefault = "2.1.25-M25" def coursier = coursierDefault @@ -150,7 +151,7 @@ object Deps { def scalafix = "0.14.5" } - def argonautShapeless = + def argonautShapeless = mvn"com.github.alexarchambault:argonaut-shapeless_6.3_2.13:${Versions.argonautShapeless}" def asm = mvn"org.ow2.asm:asm:9.9.1" // Force using of 2.13 - is there a better way?