Merge pull request #233 from eed3si9n/wip/bumpsbt

1.1.5-SNAPSHOT
This commit is contained in:
Dale Wijnand 2018-03-27 10:47:44 +01:00 committed by GitHub
commit 070e71321a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 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
}
)),

View File

@ -1 +1 @@
sbt.version=1.1.1
sbt.version=1.1.2