diff --git a/RELEASE b/RELEASE index 8cb605eaa..9afb8665f 100644 --- a/RELEASE +++ b/RELEASE @@ -1,4 +1,4 @@ -ScalaCheck 1.12.5 Release Notes +ScalaCheck 1.12.6 Release Notes ScalaCheck is a powerful tool for property-based testing of Scala and Java programs. It features automatic test case generation and simplification of @@ -26,13 +26,12 @@ ScalaCheck highlights: * ScalaCheck is well integrated with ScalaTest, sbt and specs2. -What's new in version 1.12.5? +What's new in version 1.12.6? -1.12.5 is a maintenance release that primarily fixes issues in the sbt test -runner that caused errors in the integration with ScalaTest and specs2. See -the following issue for details: +1.12.6 is a maintenance release that fixes the single issue +https://github.com/rickynils/scalacheck/issues/290 that caused a deadlock +when running ScalaCheck with Scala 2.12. - * https://github.com/rickynils/scalacheck/issues/173 ScalaCheck links: @@ -50,7 +49,7 @@ ScalaCheck links: ) libraryDependencies ++= Seq( - "org.scalacheck" %% "scalacheck" % "1.12.5" % "test" + "org.scalacheck" %% "scalacheck" % "1.12.6" % "test" ) * Maven dependency @@ -73,5 +72,5 @@ ScalaCheck links: org.scalacheck scalacheck_2.11 - 1.12.5 + 1.12.6 diff --git a/build.sbt b/build.sbt index 60ae322fc..f90351e1d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ sourceDirectory := file("dummy source directory") lazy val versionNumber = "1.12.6" -lazy val isRelease = false +lazy val isRelease = true lazy val travisCommit = Option(System.getenv().get("TRAVIS_COMMIT"))