From b3ec7bdb7588961112d2f0a5842df5436fe72176 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 29 Jan 2026 00:14:41 +0000 Subject: [PATCH] Update munit to 1.2.2 --- build.mill | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.mill b/build.mill index 94b1fe8..174c8eb 100644 --- a/build.mill +++ b/build.mill @@ -23,8 +23,8 @@ trait MillGitCross with StyleModule with GitVersionedPublishModule with SonatypeCentralPublishModule: - val millVersion = crossValue - override def scalaVersion = "3.7.4" + val millVersion = crossValue + override def scalaVersion = "3.7.4" override def scalacOptions = super.scalacOptions() ++ ScalacOptions.tokensForVersion( ScalaVersion.unsafeFromString(scalaVersion()), ScalacOptions.default + source3 ++ fatalWarningOptions @@ -38,7 +38,7 @@ trait MillGitCross object test extends ScalaTests with TestModule.Munit with StyleModule: override def mvnDeps = Seq( - mvn"org.scalameta::munit::1.2.1", + mvn"org.scalameta::munit::1.2.2", mvn"com.lihaoyi::mill-testkit:$millVersion" ) override def forkEnv = Map("MILL_EXECUTABLE_PATH" -> millExecutable.assembly().path.toString) @@ -51,7 +51,7 @@ trait MillGitCross override def artifactName = s"mill-git_mill${millBinaryVersion(millVersion)}" override def publishVersion = GitVersionModule.version(withSnapshotSuffix = true)() - def pomSettings = PomSettings( + def pomSettings = PomSettings( description = "A git version plugin for Mill build tool", organization = "com.goyeau", url = "https://github.com/joan38/mill-git",