mirror of https://github.com/sbt/sbt.git
bump to 1.1.5-SNAPSHOT
This commit is contained in:
parent
e0eb46a99e
commit
a14b53da5b
|
|
@ -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
|
||||
}
|
||||
)),
|
||||
|
|
|
|||
Loading…
Reference in New Issue