stasis/project/Mima.scala
2019-06-26 12:11:10 -04:00

12 lines
436 B
Scala

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(
// Essentially, only the following are protected by bincompat guarantees.
ProblemFilters.exclude[Problem]("io.stasis.cli.*"),
)
}
}