Skip to content

Commit d59923b

Browse files
committed
disable MiMa for now on Scala 3
1 parent 88ba8f2 commit d59923b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.sbt

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
1111
.settings(
1212
ScalaModulePlugin.scalaModuleSettings,
1313
name := "scala-parser-combinators",
14-
scalaModuleMimaPreviousVersion := Some("1.2.0-M2"),
14+
scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match {
15+
// pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62
16+
case Some((3, _)) => None
17+
case _ => Some("1.2.0-M2")
18+
}),
1519

1620
libraryDependencies += "junit" % "junit" % "4.13.2" % Test,
1721
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,

0 commit comments

Comments
 (0)