@@ -298,7 +298,7 @@ object BatchBinder:
298298
299299 /** Implicit [[BatchBinder ]] for 5-element tuples.
300300 *
301- * @since 0.2.0
301+ * @since 0.1.4
302302 */
303303 given batchBinder5 [A , B , C , D , E ](using
304304 ba : ParameterBinder [A ],
@@ -324,7 +324,7 @@ object BatchBinder:
324324
325325 /** Implicit [[BatchBinder ]] for 6-element tuples.
326326 *
327- * @since 0.2.0
327+ * @since 0.1.4
328328 */
329329 given batchBinder6 [A , B , C , D , E , F ](using
330330 ba : ParameterBinder [A ],
@@ -523,7 +523,7 @@ object ParameterBinder:
523523
524524 /** Implicit [[ParameterBinder ]] for `Float` values.
525525 *
526- * @since 0.2.0
526+ * @since 0.1.4
527527 */
528528 given floatBinder : ParameterBinder [Float ] with
529529 def bind (
@@ -538,7 +538,7 @@ object ParameterBinder:
538538 * @example
539539 * {{{batch.addBatch((java.sql.Date.valueOf("2024-06-15"), "event"))}}}
540540 *
541- * @since 0.2.0
541+ * @since 0.1.4
542542 */
543543 given dateBinder : ParameterBinder [java.sql.Date ] with
544544 def bind (
@@ -553,7 +553,7 @@ object ParameterBinder:
553553 * @example
554554 * {{{batch.addBatch((BigDecimal("123.45"), "item"))}}}
555555 *
556- * @since 0.2.0
556+ * @since 0.1.4
557557 */
558558 given bigDecimalBinder : ParameterBinder [BigDecimal ] with
559559 def bind (
@@ -565,7 +565,7 @@ object ParameterBinder:
565565
566566 /** Implicit [[ParameterBinder ]] for `Array[Byte]` values (BLOB columns).
567567 *
568- * @since 0.2.0
568+ * @since 0.1.4
569569 */
570570 given bytesBinder : ParameterBinder [Array [Byte ]] with
571571 def bind (
@@ -579,7 +579,7 @@ object ParameterBinder:
579579 *
580580 * Passed via `setObject`; DuckDB maps this to the `DATE` column type.
581581 *
582- * @since 0.2.0
582+ * @since 0.1.4
583583 */
584584 given localDateBinder : ParameterBinder [java.time.LocalDate ] with
585585 def bind (
@@ -593,7 +593,7 @@ object ParameterBinder:
593593 *
594594 * Passed via `setObject`; DuckDB maps this to the `TIMESTAMP` column type.
595595 *
596- * @since 0.2.0
596+ * @since 0.1.4
597597 */
598598 given localDateTimeBinder : ParameterBinder [java.time.LocalDateTime ] with
599599 def bind (
@@ -607,7 +607,7 @@ object ParameterBinder:
607607 *
608608 * Passed via `setObject`; DuckDB maps this to the `TIMESTAMPTZ` column type.
609609 *
610- * @since 0.2.0
610+ * @since 0.1.4
611611 */
612612 given offsetDateTimeBinder : ParameterBinder [java.time.OffsetDateTime ] with
613613 def bind (
@@ -622,7 +622,7 @@ object ParameterBinder:
622622 * @example
623623 * {{{batch.addBatch((java.sql.Timestamp.valueOf("2024-01-01 12:00:00"), "event"))}}}
624624 *
625- * @since 0.2.0
625+ * @since 0.1.4
626626 */
627627 given timestampBinder : ParameterBinder [java.sql.Timestamp ] with
628628 def bind (
@@ -640,7 +640,7 @@ object ParameterBinder:
640640 * @example
641641 * {{{batch.addBatch((java.util.UUID.randomUUID(), "label"))}}}
642642 *
643- * @since 0.2.0
643+ * @since 0.1.4
644644 */
645645 given uuidBinder : ParameterBinder [java.util.UUID ] with
646646 def bind (
0 commit comments