From 12defad999907a5be8a086b963a323257436c57e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 9 May 2025 02:26:03 +0000 Subject: [PATCH] Update scala3-library_sjs1 to 3.3.6 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 900cfc4..b30c417 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -lazy val supportedScalaVersions = List("2.13.15", "3.3.4") +lazy val supportedScalaVersions = List("2.13.15", "3.3.6") ThisBuild / organization := "org.felher" ThisBuild / organizationName := "Felix Herrmann" @@ -120,7 +120,7 @@ lazy val testMatrix = project val results = allTestKeys.foldLeft(Map.empty[CompatTestKey, Boolean])((results, testKey) => { // this code is tricky. The scalajs plugin changes the dependency list depending on the scala version. - // So just adding `scalaVersion := "3.3.4"` to the `newSettings` + // So just adding `scalaVersion := "3.3.6"` to the `newSettings` // list doesn't work, because the old dependency list is out of date. // // Instead of adding a setting, we set the new scala using the `set` command, which seems