Skip to content

Commit

Permalink
Bump version to 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Oct 19, 2016
1 parent d6a99ea commit 22a0b2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
17 changes: 9 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
sourceDirectory := file("dummy source directory")

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

lazy val isRelease = true
lazy val isRelease = false

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

Expand Down Expand Up @@ -50,12 +51,12 @@ lazy val sharedSettings = MimaSettings.settings ++ Seq(

scalacOptions in (Compile,doc) += "-Xfatal-warnings",

mimaPreviousArtifacts := (
if (CrossVersion isScalaApiCompatible scalaVersion.value)
Set("org.scalacheck" %%% "scalacheck" % "1.13.1")
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
2 changes: 0 additions & 2 deletions project/MimaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ object MimaSettings {
)

private def newMethods = Seq(
"org.scalacheck.ScalaCheckRunner.applyCmdParams"
)

private def removedPrivateMethods = Seq(
"org.scalacheck.ScalaCheckRunner.params"
)

private def removedPrivateClasses = Seq(
Expand Down

0 comments on commit 22a0b2d

Please sign in to comment.