From 0ac36865b4cadd6833f0ba76723ac205f39ff978 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 4 Nov 2020 17:17:55 -0800 Subject: [PATCH] enable MiMa --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 8d14bf51..7b395594 100644 --- a/build.sbt +++ b/build.sbt @@ -16,6 +16,7 @@ lazy val core = project.in(file("core")) // don't run Dottydoc, it errors and isn't needed anyway. // but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value), + scalaModuleMimaPreviousVersion := Some("1.0.0-RC1").filterNot(_ => isDotty.value), ) lazy val junit = project.in(file("junit"))