Merge pull request #156 from eed3si9n/wip/bumpsbt

bump to 1.1.4-SNAPSHOT
This commit is contained in:
eugene yokota 2018-03-26 22:44:23 -04:00 committed by GitHub
commit a3bf5bd0ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,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.1.0", "1.1.1", "1.1.2",
"1.1.0", "1.1.1", "1.1.2", "1.1.3"
) map (version =>
organization.value %% moduleName.value % version
cross (if (crossPaths.value) CrossVersion.binary else CrossVersion.disabled)
@ -54,10 +54,10 @@ lazy val utilRoot: Project = (project in file("."))
.settings(
inThisBuild(
Seq(
git.baseVersion := "1.1.2",
git.baseVersion := "1.1.4",
version := {
val v = version.value
if (v contains "SNAPSHOT") git.baseVersion.value
if (v contains "SNAPSHOT") git.baseVersion.value + "-SNAPSHOT"
else v
},
bintrayPackage := "util",

View File

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