From fefafb04aa43a68bf59456c2d93854b63ddad7b8 Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Sat, 21 Dec 2024 19:07:16 +0900 Subject: [PATCH] Update scala 3 version in migrating-from-sbt-1.x --- src/reference/changes/migrating-from-sbt-1.x.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference/changes/migrating-from-sbt-1.x.md b/src/reference/changes/migrating-from-sbt-1.x.md index 407207c6..e7d3f73e 100644 --- a/src/reference/changes/migrating-from-sbt-1.x.md +++ b/src/reference/changes/migrating-from-sbt-1.x.md @@ -59,7 +59,7 @@ lazy val plugin = (projectMatrix in file("plugin")) .settings( name := "sbt-vimquit", ) - .jvmPlatform(scalaVersions = Seq("3.3.3", "2.12.20")) + .jvmPlatform(scalaVersions = Seq("3.6.2", "2.12.20")) ``` If you use `projectMatrix`, make sure to move the plugin to a subdirectory like `plugin/`. Otherwise, the synthetic root project will also pick up the `src/`. @@ -71,7 +71,7 @@ Use sbt 1.10.2 or later, if you want to cross build using sbt 1.x. ```scala // using sbt 1.x lazy val scala212 = "2.12.20" -lazy val scala3 = "3.3.4" +lazy val scala3 = "3.6.2" ThisBuild / crossScalaVersions := Seq(scala212, scala3) lazy val plugin = (project in file("plugin"))