From 45885acf47fc4728af695aa71f36aa2891cd9796 Mon Sep 17 00:00:00 2001 From: lloydmeta Date: Sat, 23 Nov 2019 21:03:02 +0900 Subject: [PATCH] enumeratum-doobie v1.5.16 release Signed-off-by: lloydmeta --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 2d2c59a2..128cd317 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ lazy val theScalaVersion = "2.12.8" */ lazy val scalaVersions = Seq(theScalaVersion, "2.10.7", "2.11.12") lazy val scalaVersionsAbove_2_11 = Seq("2.11.12", "2.12.8") -lazy val scala_2_13Version = "2.13.0" +lazy val scala_2_13Version = "2.13.1" lazy val scalaVersionsAll = scalaVersions :+ scala_2_13Version lazy val scalaTestVersion = "3.0.8" @@ -24,7 +24,7 @@ lazy val quillVersion = "3.2.1" def theDoobieVersion(scalaVersion: String) = CrossVersion.partialVersion(scalaVersion) match { - case Some((2, scalaMajor)) if scalaMajor >= 12 => "0.8.4" + case Some((2, scalaMajor)) if scalaMajor >= 12 => "0.8.6" case Some((2, scalaMajor)) if scalaMajor <= 11 => "0.7.0" case _ => throw new IllegalArgumentException(s"Unsupported Scala version $scalaVersion") @@ -434,8 +434,8 @@ lazy val enumeratumDoobie = .settings(commonWithPublishSettings: _*) .settings(testSettings: _*) .settings( - crossScalaVersions := scalaVersionsAbove_2_11, - version := "1.5.16-SNAPSHOT", + crossScalaVersions := scalaVersionsAbove_2_11 :+ scala_2_13Version, + version := "1.5.16", libraryDependencies ++= { Seq( "com.beachape" %%% "enumeratum" % Versions.Core.stable,