From f57dd0818056bbd27c7ab70f73a94f871688c0f9 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 15 Oct 2025 15:53:38 +0000 Subject: [PATCH] Update scala3-library_sjs1 to 3.3.7 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 900cfc4..9871ec7 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.7") 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.7"` 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