Skip to content

Commit e927561

Browse files
committed
ignore MiMa IncompatibleSignatureProblems
1 parent 9cd18dc commit e927561

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build.sbt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head
55
// makes it into a release
66
ThisBuild / libraryDependencySchemes += "org.scala-lang" %% "scala3-library" % "semver-spec"
77

8+
// this was necessary to get us from 3.0.0 to 3.0.2, but we should be able to remove
9+
// it after the next release
10+
import com.typesafe.tools.mima.core._
11+
ThisBuild / mimaBinaryIssueFilters ++= Seq(
12+
ProblemFilters.exclude[IncompatibleSignatureProblem]("*"),
13+
)
14+
815
Global / cancelable := true
916
publish / skip := true // in root
1017

0 commit comments

Comments
 (0)