From d2bd552a97ffd6f5300f0d231975fd8c08c75b38 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 20 Oct 2024 21:58:30 +0000 Subject: [PATCH 1/2] Update sbt-scala-module to 3.2.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f72bd52c..a985cc4e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.0") From 72a05fef886aab8517531921efa40fcc77cf94b0 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 17 Dec 2024 17:34:53 -0800 Subject: [PATCH 2/2] temporarily disable IncompatibleSignatureProblem checking --- build.sbt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.sbt b/build.sbt index b205014a..7bfdbd19 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,12 @@ ThisBuild / crossScalaVersions := Seq("2.13.15", "3.3.4") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head +// we can remove this after we ship 1.0.5; see #273 for gory details +import com.typesafe.tools.mima.core._ +ThisBuild / mimaBinaryIssueFilters ++= Seq( + ProblemFilters.exclude[IncompatibleSignatureProblem]("*"), +) + Global / cancelable := true publish / skip := true // in root