Skip to content

Commit

Permalink
Reset MiMA
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Jul 26, 2021
1 parent 1910d07 commit 259d6c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion project/Mima.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ import scala.sys.process._
object Mima {

def binaryCompatibilityVersions: Set[String] =
Seq("git", "tag", "--merged", "HEAD^", "--contains", "15cf6005e")
Seq("git", "tag", "--merged", "HEAD^", "--contains", "1b90b2ac934eb41d6a82d10bd78561fa91fb4ead")
.!!
.linesIterator
.map(_.trim)
.filter(_.startsWith("v"))
.map(_.stripPrefix("v"))
.filter(_ != "2.1.0-M5")
.toSet

def settings = Def.settings(
Expand Down

0 comments on commit 259d6c4

Please sign in to comment.