From fef75362984a41b687f49039fb0cd4ea4beb1bbb Mon Sep 17 00:00:00 2001 From: Victor Hugo Borja Date: Thu, 16 May 2019 12:43:47 -0500 Subject: [PATCH 1/2] Compile with Scala 2.12 --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 63b5a96..9ee176e 100644 --- a/build.sbt +++ b/build.sbt @@ -4,11 +4,11 @@ organization := "com.github.florinn" version := "0.2-SNAPSHOT" -scalaVersion := "2.11.6" +scalaVersion := "2.12.7" libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value -libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.4" % "test" +libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test" publishTo := { val nexus = "https://oss.sonatype.org/" @@ -42,4 +42,4 @@ pomExtra := ( git@github.com:florinn/veryfay-scala.git scm:git:git@github.com:florinn/veryfay-scala.git - ) \ No newline at end of file + ) From f98d3da359533af7e1349a7dad099e4d21d06030 Mon Sep 17 00:00:00 2001 From: Victor Hugo Borja Date: Thu, 16 May 2019 12:58:44 -0500 Subject: [PATCH 2/2] Bump version to 0.3-SNAPSHOT --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9ee176e..441e404 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := "veryfay" organization := "com.github.florinn" -version := "0.2-SNAPSHOT" +version := "0.3-SNAPSHOT" scalaVersion := "2.12.7"