Skip to content

Commit e0d69f3

Browse files
committed
Don't MiMa on 2.13
1 parent f12cfd5 commit e0d69f3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(
9191
// don't use fatal warnings in tests
9292
scalacOptions in Test ~= (_ filterNot (_ == "-Xfatal-warnings")),
9393

94-
mimaPreviousArtifacts := Set("org.scalacheck" %% "scalacheck" % "1.14.0"),
94+
mimaPreviousArtifacts := {
95+
// TODO: re-enable MiMa for 2.13.0-M4 once there is a release out
96+
if (scalaMajorVersion.value == 13) Set()
97+
else Set("org.scalacheck" %% "scalacheck" % "1.14.0")
98+
},
9599

96100
publishTo := {
97101
val nexus = "https://oss.sonatype.org/"

0 commit comments

Comments
 (0)