From 4a05d89747d0546d7f8162a902a81f3db8151c01 Mon Sep 17 00:00:00 2001 From: Anton Sviridov Date: Mon, 11 Nov 2024 20:23:57 +0000 Subject: [PATCH] Bump to Scala 3 LTS, fix multi-platform tests --- build.sbt | 17 ++++++++--------- project/plugins.sbt | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/build.sbt b/build.sbt index 81f2773..d4995b9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,13 +1,12 @@ -val scala211 = "2.11.12" -val scala212 = "2.12.19" -val scala213 = "2.13.14" -val scala3 = "3.1.2" -val scalaFull = Seq(scala213, scala212, /*scala211,*/ scala3) +val scala212 = "2.12.20" +val scala213 = "2.13.15" +val scala3 = "3.3.4" +val scalaFull = Seq(scala213, scala212, scala3) +val verify = "1.0.0" + ThisBuild / scalaVersion := scala213 Global / semanticdbEnabled := true -Global / semanticdbVersion := "4.9.3" - -lazy val verify = "com.eed3si9n.verify" %% "verify" % "1.0.0" +Global / semanticdbVersion := "4.11.0" lazy val root = (project in file(".")) .aggregate(expecty.projectRefs: _*) @@ -32,7 +31,7 @@ lazy val expecty = (projectMatrix in file(".")) case Some((2, _)) => Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value) case _ => Nil }), - libraryDependencies += verify % Test, + libraryDependencies += "com.eed3si9n.verify" %%% "verify" % verify % Test, testFrameworks += new TestFramework("verify.runner.Framework"), ) .jvmPlatform( diff --git a/project/plugins.sbt b/project/plugins.sbt index 66d7cc7..dee853d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ val scalaJSVersion = - Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.16.0") + Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.17.0") val scalaNativeVersion = Option(System.getenv("SCALANATIVE_VERSION")).getOrElse("0.5.4")