From 2ee0a1e19aee1875b956b39acef3af13fda2a28f Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Mon, 18 Dec 2017 16:01:01 +0000 Subject: [PATCH] Add 1.1.1 to mimaPreviousArtifacts, & backfill --- build.sbt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 41a967b3a..c421a25c0 100644 --- a/build.sbt +++ b/build.sbt @@ -32,9 +32,12 @@ def commonSettings: Seq[Setting[_]] = Seq( val mimaSettings = Def settings ( mimaPreviousArtifacts := Set( - organization.value % moduleName.value % "1.0.0" + "1.0.0", "1.0.1", "1.0.2", "1.0.3", + "1.1.0", "1.1.1", + ) map (version => + organization.value %% moduleName.value % version cross (if (crossPaths.value) CrossVersion.binary else CrossVersion.disabled) - ) + ), ) lazy val utilRoot: Project = (project in file("."))