stasis/project/Mima.scala

13 lines
436 B
Scala
Raw Permalink Normal View History

2019-06-25 20:12:40 +00:00
import com.typesafe.tools.mima.core._
object Mima {
val ignoredABIProblems: Seq[ProblemFilter] = {
// After v0.5, start running mima checks in CI and document breaking changes here.
// See https://github.com/typesafehub/migration-manager/wiki/sbt-plugin#basic-usage
Seq(
2019-06-25 20:45:46 +00:00
// Essentially, only the following are protected by bincompat guarantees.
2019-06-25 20:12:40 +00:00
ProblemFilters.exclude[Problem]("io.stasis.cli.*"),
)
}
}