bump to 1.1.5-SNAPSHOT

This commit is contained in:
Eugene Yokota 2018-03-26 22:50:41 -04:00
parent e0eb46a99e
commit a14b53da5b
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ def commonSettings: Seq[Setting[_]] = Seq(
val mimaSettings = Def settings (
mimaPreviousArtifacts := Set(
"1.0.0", "1.0.1", "1.0.2", "1.0.3", "1.0.4",
"1.1.0", "1.1.1", "1.1.2", "1.1.3",
"1.1.0", "1.1.1", "1.1.2", "1.1.3", "1.1.4",
) map (version =>
organization.value %% moduleName.value % version
cross (if (crossPaths.value) CrossVersion.binary else CrossVersion.disabled)
@ -50,10 +50,10 @@ lazy val lmRoot = (project in file("."))
},
bintrayPackage := "librarymanagement",
scalafmtOnCompile in Sbt := false,
git.baseVersion := "1.1.3",
git.baseVersion := "1.1.5",
version := {
val v = version.value
if (v contains "SNAPSHOT") git.baseVersion.value
if (v contains "SNAPSHOT") git.baseVersion.value + "-SNAPSHOT"
else v
}
)),