Skip to content

Commit

Permalink
Bump version to 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Apr 22, 2018
1 parent 9b4d431 commit 2cdfc55
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ sourceDirectory := file("dummy source directory")

scalaVersionSettings

// When bumping to 1.14.1, remember to set mimaPreviousArtifacts to 1.14.0
lazy val versionNumber = "1.14.0"
lazy val versionNumber = "1.14.1"

lazy val isRelease = true
lazy val isRelease = false

lazy val travisCommit = Option(System.getenv().get("TRAVIS_COMMIT"))

Expand Down Expand Up @@ -79,12 +78,12 @@ lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(
// don't use fatal warnings in tests
scalacOptions in Test ~= (_ filterNot (_ == "-Xfatal-warnings")),

//mimaPreviousArtifacts := (
// if (CrossVersion isScalaApiCompatible scalaVersion.value)
// Set("org.scalacheck" %%% "scalacheck" % "1.14.0")
// else
// Set.empty
//),
mimaPreviousArtifacts := (
if (CrossVersion isScalaApiCompatible scalaVersion.value)
Set("org.scalacheck" %%% "scalacheck" % "1.14.0")
else
Set.empty
),

publishTo := {
val nexus = "https://oss.sonatype.org/"
Expand Down

0 comments on commit 2cdfc55

Please sign in to comment.