Skip to content

Commit

Permalink
chore: bump quotidian to 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
chuwy committed Apr 1, 2024
1 parent 3ca9457 commit 39d653c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
// Versions
lazy val skunk = "0.6.3"
lazy val iron = "2.5.0"
lazy val quotidian = "0.0.6"
lazy val quotidian = "0.0.14"
lazy val munit = "0.7.29"
lazy val munitCE = "1.0.7"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ object MacroDissect:
import quotes.reflect.*

MacroMirror.summon[T] match
case Some(pm: MacroMirror.ProductMacroMirror[quotes.type, T]) =>
case Some(pm: MacroMirror.Product[quotes.type, T]) =>
val nested = pm.elemTypes.map { case '[tpe] =>
Expr.summon[IsColumn[tpe]] match
case Some(_) => None
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/skunk/tables/internal/MacroTable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ object MacroTable:
List(NonEmptyList(elem.label, root).reverse -> (elem.typeRepr, p))
case None =>
MacroMirror.summon[t] match
case Some(pm: MacroMirror.ProductMacroMirror[quotes.type, t]) =>
case Some(pm: MacroMirror.Product[quotes.type, t]) =>
flattenProduct[t](elem.label :: root)(pm.elems)
case _ =>
quotes.reflect.report.errorAndAbort(
Expand Down

0 comments on commit 39d653c

Please sign in to comment.