From b0b0e5d1f391bd249931e32602abbdbc7e0b57bf Mon Sep 17 00:00:00 2001 From: fortyseven_degrees Date: Wed, 12 Jul 2023 05:10:28 +0000 Subject: [PATCH 1/4] Update sbt-tpolecat to 0.4.4 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 989047e7..273537b7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -14,7 +14,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") -addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1") +addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8") From f22702098c2e741646469a9de21e0c2e233d7cf1 Mon Sep 17 00:00:00 2001 From: fortyseven_degrees Date: Fri, 13 Oct 2023 05:09:59 +0000 Subject: [PATCH 2/4] Revert commit(s) b0b0e5d --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 273537b7..989047e7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -14,7 +14,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") -addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4") +addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8") From d846dd496ba7d4f67bd697cc9ecf76a388afe143 Mon Sep 17 00:00:00 2001 From: fortyseven_degrees Date: Fri, 13 Oct 2023 05:10:09 +0000 Subject: [PATCH 3/4] Update sbt-tpolecat to 0.4.4 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e4149ff7..69ccf8d3 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -14,7 +14,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") -addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1") +addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.8") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") From 787e83ff780cbd1987c9452e139b4e8ec05651b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fede=20Fern=C3=A1ndez?= <720923+fedefernandez@users.noreply.github.com> Date: Fri, 13 Oct 2023 09:54:11 +0200 Subject: [PATCH 4/4] Disable fatal warnings on documentation --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index 7935a2cb..10dab003 100644 --- a/build.sbt +++ b/build.sbt @@ -129,6 +129,7 @@ lazy val documentation = projectMatrix .dependsOn(crossBuiltModuleDeps: _*) .settings(mdocOut := file(".")) .settings(publish / skip := true) + .settings(scalacOptions -= "-Xfatal-warnings") .jvmPlatform(scalaVersions = Seq(dependencies.scala2_12, dependencies.scala2_13)) lazy val microsite = projectMatrix @@ -139,6 +140,7 @@ lazy val microsite = projectMatrix .settings(dependencies.micrositeSettings) .dependsOn(crossBuiltModuleDeps: _*) .settings(publish / skip := true) + .settings(scalacOptions -= "-Xfatal-warnings") .jvmPlatform(scalaVersions = Seq(dependencies.scala2_12, dependencies.scala2_13)) //////////////////////