mirror of
https://github.com/sbt/sbt.git
synced 2026-09-06 09:37:02 +02:00
Switch to sbt-mima 0.6.3
And restrict checked versions in mima (incompatible signature problem with former versions).
This commit is contained in:
+1
-2
@@ -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(
|
||||
|
||||
+1
-1
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user