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 9cd18dc commit e927561Copy full SHA for e927561
build.sbt
@@ -5,6 +5,13 @@ ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head
5
// makes it into a release
6
ThisBuild / libraryDependencySchemes += "org.scala-lang" %% "scala3-library" % "semver-spec"
7
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
+
15
Global / cancelable := true
16
publish / skip := true // in root
17
0 commit comments