Skip to content

Commit

Permalink
enumeratum-doobie v1.5.16 release
Browse files Browse the repository at this point in the history
Signed-off-by: lloydmeta <lloydmeta@gmail.com>
  • Loading branch information
lloydmeta committed Nov 23, 2019
1 parent 500a6ce commit 45885ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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")
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 45885ac

Please sign in to comment.