From 4200a6e42e8b8919d35a1882c769cb7517475e48 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 7 Feb 2026 15:04:55 +0000 Subject: [PATCH 1/2] Update sbt-tpolecat to 0.5.3 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 73fc4a9..88720dc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.29.0") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.8.2") -addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") +addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.3") addSbtPlugin("com.frugalmechanic" % "fm-sbt-s3-resolver" % "0.23.0") From 7620645bc71cd3bc8f727992b988b74c10c844b6 Mon Sep 17 00:00:00 2001 From: Matt Dziuban Date: Sat, 7 Feb 2026 13:11:15 -0500 Subject: [PATCH 2/2] Update scalac option. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0b296a6..9da8f29 100644 --- a/build.sbt +++ b/build.sbt @@ -95,7 +95,7 @@ lazy val example = project.in(file("example")) lazy val docs = project.in(file("composefree-docs")) .settings(commonSettings ++ Seq( mdocOut := file("."), - scalacOptions ~= (_.filterNot(o => o == "-Xfatal-warnings" || o.startsWith("-Wconf:msg=package"))), + scalacOptions ~= (_.filterNot(o => o == "-Werror" || o.startsWith("-Wconf:msg=package"))), )) .dependsOn(core, future) .enablePlugins(MdocPlugin)