From cf7498d256f8f3e9e6502c25f23cecbe3b48cdde Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Tue, 4 Feb 2020 12:21:09 +0100 Subject: [PATCH] Switch to sbt-mima 0.6.3 And restrict checked versions in mima (incompatible signature problem with former versions). --- project/Mima.scala | 3 +-- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/project/Mima.scala b/project/Mima.scala index 258bc7831..93ec63c33 100644 --- a/project/Mima.scala +++ b/project/Mima.scala @@ -14,14 +14,13 @@ object Mima { .forall(c => c == '.' || c == '-' || c.isDigit) def binaryCompatibilityVersions: Set[String] = - Seq("git", "tag", "--merged", "HEAD^", "--contains", "736d5c11") + Seq("git", "tag", "--merged", "HEAD^", "--contains", "v2.0.0-RC3-6") .!! .linesIterator .map(_.trim) .filter(_.startsWith("v")) .map(_.stripPrefix("v")) .filter(stable) - .filter(_ != "2.0.0-RC3-2") // borked release .toSet def settings: Seq[Setting[_]] = Seq( diff --git a/project/plugins.sbt b/project/plugins.sbt index 3df6cf45e..a7c8e4c35 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.0") -addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.3.0") +addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.3") addSbtPlugin("io.get-coursier" % "sbt-coursier" % "2.0.0-RC5-3") addSbtPlugin("io.get-coursier" % "sbt-shading" % "2.0.0-RC5-3")