Skip to content

Commit

Permalink
Update doobie version to 0.8.8 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
jatcwang authored and lloydmeta committed Dec 28, 2019
1 parent 08e1b58 commit 11a085a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lazy val quillVersion = "3.5.0"

def theDoobieVersion(scalaVersion: String) =
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor)) if scalaMajor >= 12 => "0.8.6"
case Some((2, scalaMajor)) if scalaMajor >= 12 => "0.8.8"
case Some((2, scalaMajor)) if scalaMajor <= 11 => "0.7.0"
case _ =>
throw new IllegalArgumentException(s"Unsupported Scala version $scalaVersion")
Expand Down
1 change: 1 addition & 0 deletions enumeratum-doobie/src/main/scala/enumeratum/Doobie.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package enumeratum

import doobie.util._
import doobie.Meta

object Doobie {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package enumeratum

import doobie.util._
import doobie.Meta

/**
* Helper trait that adds implicit Doobie Get and Put for an [[Enum]]'s members
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package enumeratum.values

import doobie.util._
import doobie.Meta

object Doobie {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package enumeratum.values

import doobie.util._
import doobie.Meta

sealed trait DoobieValueEnum[ValueType, EntryType <: ValueEnumEntry[ValueType], DoobieType] {
this: ValueEnum[ValueType, EntryType] =>
Expand Down

0 comments on commit 11a085a

Please sign in to comment.