From 985e03dde7513cbcf962f5b68263f7a4680a43f6 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sat, 24 Jan 2026 21:36:42 -0600 Subject: [PATCH 1/2] (patch) update to scala 3.8 --- .pre-commit-config.yaml | 2 +- .scalafmt.conf | 2 +- build.sbt | 4 ++-- project/build.properties | 2 +- project/plugins.sbt | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fbcf79c..f3ae718 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ --- repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v6.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace diff --git a/.scalafmt.conf b/.scalafmt.conf index 9c7929b..77904e4 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,5 +1,5 @@ // See: https://github.com/scalameta/scalafmt/tags for the latest tags. -version = 3.8.1 +version = 3.10.4 runner.dialect = scala3 maxColumn = 80 diff --git a/build.sbt b/build.sbt index 8edddfc..bc9521c 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val scala3: String = "3.7.1" +val scala3: String = "3.8.1" externalResolvers := Seq( "Garrity Software Mirror" at "https://maven.garrity.co/releases", @@ -18,7 +18,7 @@ lazy 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 eb382dc..1db1aad 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -28,6 +28,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.4.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") -- 2.43.0 From 66b7f5560f600e693c8cc927c05b60e1d0e80741 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sat, 24 Jan 2026 21:40:25 -0600 Subject: [PATCH 2/2] (patch) update pre-commit support --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f3ae718..e1e416d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,6 +11,6 @@ repos: description: Enforces using only 'LF' line endings. - id: trailing-whitespace - repo: https://git.garrity.co/garrity-software/gs-pre-commit-scala - rev: v1.0.1 + rev: v1.0.2 hooks: - id: scalafmt -- 2.43.0