From 9000ab425ad70aa08088b5d9d8af2ded306b633b Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sat, 24 Jan 2026 21:47:11 -0600 Subject: [PATCH] (patch) update to scala 3.8 --- .pre-commit-config.yaml | 4 ++-- .scalafmt.conf | 2 +- build.sbt | 4 ++-- project/plugins.sbt | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d3cafd8..7a7e7c7 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 @@ -12,6 +12,6 @@ repos: - id: trailing-whitespace - id: check-yaml - repo: https://git.garrity.co/garrity-software/gs-pre-commit-scala - rev: v1.0.1 + rev: v1.0.2 hooks: - id: scalafmt diff --git a/.scalafmt.conf b/.scalafmt.conf index 7464e8d..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.2 +version = 3.10.4 runner.dialect = scala3 maxColumn = 80 diff --git a/build.sbt b/build.sbt index b3d0e16..d90f9de 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val scala3: String = "3.7.4" +val scala3: String = "3.8.1" ThisBuild / scalaVersion := scala3 ThisBuild / versionScheme := Some("semver-spec") @@ -39,6 +39,6 @@ lazy val core = project .settings(name := s"${gsProjectName.value}-core-v${semVerMajor.value}") .settings( libraryDependencies ++= Seq( - "gs" %% "gs-uuid-v0" % "0.4.1" + "gs" %% "gs-uuid-v0" % "0.4.2" ) ) diff --git a/project/plugins.sbt b/project/plugins.sbt index 83e5dc1..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.3.1") -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")