Skip to content

Commit ca33dfb

Browse files
authored
adjust MiMa settings, post-1.1.0 (#281)
1 parent e9ea530 commit ca33dfb

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

build.sbt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
ThisBuild / crossScalaVersions := Seq("2.13.15", "3.3.4")
22
ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head
33

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-
104
Global / cancelable := true
115
publish / skip := true // in root
126

137
lazy val commonSettings: Seq[Setting[_]] =
148
Seq(scalaModuleAutomaticModuleName := Some("scala.collection.parallel")) ++
159
ScalaModulePlugin.scalaModuleSettings ++ Seq(
16-
versionPolicyIntention := Compatibility.BinaryCompatible,
10+
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
1711
Compile / compile / scalacOptions --= (CrossVersion.partialVersion(scalaVersion.value) match {
1812
case Some((3, _)) => Seq("-Xlint")
1913
case _ => Seq()

0 commit comments

Comments
 (0)