Merge pull request #137 from dwijnand/mima

Add 1.1.1 to mimaPreviousArtifacts, & backfill
This commit is contained in:
eugene yokota 2017-12-18 19:57:10 -05:00 committed by GitHub
commit 6b102af836
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -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("."))