Skip to content

Commit a6fe701

Browse files
committed
Post release 1.5.0.
1 parent 1b560e6 commit a6fe701

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

build.sbt

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.typesafe.tools.mima.core.{Problem, ProblemFilters}
22

3-
val previousVersion: Option[String] = Some("1.4.0")
4-
val newScalaBinaryVersionsInThisRelease: Set[String] = Set("3")
3+
val previousVersion: Option[String] = Some("1.5.0")
4+
val newScalaBinaryVersionsInThisRelease: Set[String] = Set.empty
55

66
inThisBuild(Def.settings(
77
organization := "org.scala-js",
@@ -87,16 +87,7 @@ val commonSettings = Def.settings(
8787
// New in this release, no binary compatibility to comply to
8888
Set.empty
8989
case Some(prevVersion) =>
90-
/* Filter out e:info.apiURL as it expects 1.1.1-SNAPSHOT, whereas the
91-
* artifact we're looking for has 1.1.0 (for example).
92-
*/
93-
val prevExtraAttributes =
94-
thisProjectID.extraAttributes.filterKeys(_ != "e:info.apiURL")
95-
val prevProjectID =
96-
(thisProjectID.organization % thisProjectID.name % prevVersion)
97-
.cross(thisProjectID.crossVersion)
98-
.extra(prevExtraAttributes.toSeq: _*)
99-
Set(prevProjectID)
90+
Set(thisProjectID.organization %% thisProjectID.name % prevVersion)
10091
}
10192
},
10293
mimaFailOnNoPrevious := !newScalaBinaryVersionsInThisRelease.contains(scalaBinaryVersion.value),

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")
2-
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1")
2+
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")
33
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")

0 commit comments

Comments
 (0)