We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b9576ba + 72a05fe commit 55177afCopy full SHA for 55177af
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
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")
0 commit comments