diff --git a/frontend/src/test/resources/cross-test-build-scala-native-0.4/build.sbt b/frontend/src/test/resources/cross-test-build-scala-native-0.4/build.sbt index 58da2fc0f0..f2a1223913 100644 --- a/frontend/src/test/resources/cross-test-build-scala-native-0.4/build.sbt +++ b/frontend/src/test/resources/cross-test-build-scala-native-0.4/build.sbt @@ -6,7 +6,7 @@ lazy val `test-project` = .withoutSuffixFor(JVMPlatform) .settings( name := "test-project", - scalaVersion := "2.13.16", + scalaVersion := "2.13.17", mainClass in (Compile, run) := Some("hello.App") ) diff --git a/frontend/src/test/resources/cross-test-build-scala-native-0.5/build.sbt b/frontend/src/test/resources/cross-test-build-scala-native-0.5/build.sbt index 58da2fc0f0..f2a1223913 100644 --- a/frontend/src/test/resources/cross-test-build-scala-native-0.5/build.sbt +++ b/frontend/src/test/resources/cross-test-build-scala-native-0.5/build.sbt @@ -6,7 +6,7 @@ lazy val `test-project` = .withoutSuffixFor(JVMPlatform) .settings( name := "test-project", - scalaVersion := "2.13.16", + scalaVersion := "2.13.17", mainClass in (Compile, run) := Some("hello.App") ) diff --git a/frontend/src/test/scala/bloop/bsp/BspCompileSpec.scala b/frontend/src/test/scala/bloop/bsp/BspCompileSpec.scala index 94cdc07336..def5d68a1e 100644 --- a/frontend/src/test/scala/bloop/bsp/BspCompileSpec.scala +++ b/frontend/src/test/scala/bloop/bsp/BspCompileSpec.scala @@ -1367,7 +1367,7 @@ class BspCompileSpec( "a", List(slowFile, fastFile), List(macroProject), - scalaVersion = Some("2.13.16") + scalaVersion = Some("2.13.17") ) val projects = List(macroProject, testProject) val configDir = TestProject.populateWorkspace(workspace, projects) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 1b8169a20a..c8d6017a5b 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -7,7 +7,7 @@ import sbt.Provided object Dependencies { val Scala211Version = "2.11.12" val Scala212Version = "2.12.20" - val Scala213Version = "2.13.16" + val Scala213Version = "2.13.17" val SbtVersion = "1.5.8" @@ -65,7 +65,7 @@ object Dependencies { val coursierJvm = "io.get-coursier" %% "coursier-jvm" % coursierVersion val dependency = "io.get-coursier" %% "dependency" % "0.3.2" val directoriesJni = "io.get-coursier.util" % "directories-jni" % "0.1.4" - val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.13.0" + val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.14.0" val shapeless = "com.chuusai" %% "shapeless" % shapelessVersion val caseApp = "com.github.alexarchambault" %% "case-app" % caseAppVersion val caseApp21 = "com.github.alexarchambault" %% "case-app" % "2.1.0-M30"