We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2bd552 commit 72a05feCopy full SHA for 72a05fe
build.sbt
@@ -1,6 +1,12 @@
1
ThisBuild / crossScalaVersions := Seq("2.13.15", "3.3.4")
2
ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head
3
4
+// we can remove this after we ship 1.0.5; see #273 for gory details
5
+import com.typesafe.tools.mima.core._
6
+ThisBuild / mimaBinaryIssueFilters ++= Seq(
7
+ ProblemFilters.exclude[IncompatibleSignatureProblem]("*"),
8
+)
9
+
10
Global / cancelable := true
11
publish / skip := true // in root
12
0 commit comments