mirror of https://github.com/sbt/sbt.git
Switch to sbt-mima 0.6.3
And restrict checked versions in mima (incompatible signature problem with former versions).
This commit is contained in:
parent
b5d73896ca
commit
cf7498d256
|
|
@ -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,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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue