Skip to content

Commit 39d653c

Browse files
committed
chore: bump quotidian to 0.0.14
1 parent 3ca9457 commit 39d653c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
2323
// Versions
2424
lazy val skunk = "0.6.3"
2525
lazy val iron = "2.5.0"
26-
lazy val quotidian = "0.0.6"
26+
lazy val quotidian = "0.0.14"
2727
lazy val munit = "0.7.29"
2828
lazy val munitCE = "1.0.7"
2929

core/src/main/scala/skunk/tables/internal/MacroDissect.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ object MacroDissect:
8888
import quotes.reflect.*
8989

9090
MacroMirror.summon[T] match
91-
case Some(pm: MacroMirror.ProductMacroMirror[quotes.type, T]) =>
91+
case Some(pm: MacroMirror.Product[quotes.type, T]) =>
9292
val nested = pm.elemTypes.map { case '[tpe] =>
9393
Expr.summon[IsColumn[tpe]] match
9494
case Some(_) => None

core/src/main/scala/skunk/tables/internal/MacroTable.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ object MacroTable:
285285
List(NonEmptyList(elem.label, root).reverse -> (elem.typeRepr, p))
286286
case None =>
287287
MacroMirror.summon[t] match
288-
case Some(pm: MacroMirror.ProductMacroMirror[quotes.type, t]) =>
288+
case Some(pm: MacroMirror.Product[quotes.type, t]) =>
289289
flattenProduct[t](elem.label :: root)(pm.elems)
290290
case _ =>
291291
quotes.reflect.report.errorAndAbort(

0 commit comments

Comments
 (0)