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")