From fa09ea8e3dbb752d323f90e74eab2eb532cc9074 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sat, 24 Jan 2026 21:28:40 -0600 Subject: [PATCH] (patch) update to scala 3.8 --- .scalafmt.conf | 2 +- build.sbt | 4 ++-- project/build.properties | 2 +- project/plugins.sbt | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 13746e4..ed3b6eb 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,5 +1,5 @@ // See: https://github.com/scalameta/scalafmt/tags for the latest tags. -version = 3.9.4 +version = 3.10.4 runner.dialect = scala3 maxColumn = 80 diff --git a/build.sbt b/build.sbt index 8f239d2..9264173 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val scala3: String = "3.7.1" +val scala3: String = "3.8.1" ThisBuild / scalaVersion := scala3 ThisBuild / versionScheme := Some("semver-spec") @@ -20,7 +20,7 @@ val sharedSettings = Seq( lazy val testSettings = Seq( libraryDependencies ++= Seq( - "org.scalameta" %% "munit" % "1.1.1" % Test + "org.scalameta" %% "munit" % "1.2.1" % Test ) ) diff --git a/project/build.properties b/project/build.properties index bbb0b60..30b7fd9 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.11.2 +sbt.version=1.12.0 diff --git a/project/plugins.sbt b/project/plugins.sbt index 95ffa71..9691bc6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -29,6 +29,6 @@ externalResolvers := Seq( "Garrity Software Releases" at "https://maven.garrity.co/gs" ) -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0") -addSbtPlugin("gs" % "sbt-garrity-software" % "0.6.0") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.4") +addSbtPlugin("gs" % "sbt-garrity-software" % "0.7.0") addSbtPlugin("gs" % "sbt-gs-semver" % "0.3.0")