From 5568bf21e9d2d8f643faaafe846e43a15c76bd6a Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Thu, 3 Nov 2016 13:13:29 +0900 Subject: [PATCH] Bump to Scala 2.12.0 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index bf6185b..24223ed 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ crossVersion := CrossVersion.binary scalacOptions ++= Seq("-optimize", "-unchecked", "-deprecation", "-Xcheckinit", "-encoding", "utf8") libraryDependencies <+= (scalaVersion) { - case v if v.startsWith("2.12") => "org.specs2" %% "specs2-core" % "3.8.5" % "test" + case v if v.startsWith("2.12") => "org.specs2" %% "specs2-core" % "3.8.6" % "test" case _ => "org.specs2" %% "specs2" % "2.3.11" % "test" } @@ -24,7 +24,7 @@ libraryDependencies ++= Seq( autoCompilerPlugins := true -crossScalaVersions := Seq("2.11.0", "2.12.0-RC1") +crossScalaVersions := Seq("2.11.0", "2.12.0") parallelExecution in Test := false