From 9c58510cc4c6a09f4ef2a62ec06a03ec23740586 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sun, 27 Jul 2025 21:21:08 -0500 Subject: [PATCH] (patch) version updates and doc updates --- .gitignore | 1 + build.sbt | 4 ++-- project/build.properties | 2 +- project/plugins.sbt | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 7af9867..5d2af1f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ project/target/ project/project/ modules/core/target/ .version +.scala-version diff --git a/build.sbt b/build.sbt index 859e587..8f239d2 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val scala3: String = "3.6.4" +val scala3: String = "3.7.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.0" % Test + "org.scalameta" %% "munit" % "1.1.1" % Test ) ) diff --git a/project/build.properties b/project/build.properties index cc68b53..bbb0b60 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.11 +sbt.version=1.11.2 diff --git a/project/plugins.sbt b/project/plugins.sbt index 809dbbe..95ffa71 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -25,9 +25,10 @@ credentials += selectCredentials() externalResolvers := Seq( "Garrity Software Mirror" at "https://maven.garrity.co/releases", + "Garrity Software Snapshots" at "https://maven.garrity.co/snapshots", "Garrity Software Releases" at "https://maven.garrity.co/gs" ) addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0") -addSbtPlugin("gs" % "sbt-garrity-software" % "0.5.0") +addSbtPlugin("gs" % "sbt-garrity-software" % "0.6.0") addSbtPlugin("gs" % "sbt-gs-semver" % "0.3.0")