Skip to content

Commit 104ede9

Browse files
committed
get ready for new release
1 parent 5f4324b commit 104ede9

File tree

6 files changed

+31
-31
lines changed

6 files changed

+31
-31
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ Add duck4s to your `build.sbt`:
3838

3939
```scala
4040
// Core library
41-
libraryDependencies += "com.softinio" %% "duck4s" % "0.1.3"
41+
libraryDependencies += "com.softinio" %% "duck4s" % "0.1.4"
4242

4343
// Optional: cats-effect integration (includes fs2)
44-
libraryDependencies += "com.softinio" %% "duck4s-cats-effect" % "0.1.3"
44+
libraryDependencies += "com.softinio" %% "duck4s-cats-effect" % "0.1.4"
4545
```
4646

4747
#### Mill
@@ -51,13 +51,13 @@ Add duck4s to your `build.mill`:
5151
```scala
5252
// Core library
5353
def ivyDeps = Agg(
54-
ivy"com.softinio::duck4s::0.1.3"
54+
ivy"com.softinio::duck4s::0.1.4"
5555
)
5656

5757
// Optional: cats-effect integration (includes fs2)
5858
def ivyDeps = Agg(
59-
ivy"com.softinio::duck4s::0.1.3",
60-
ivy"com.softinio::duck4s-cats-effect::0.1.3"
59+
ivy"com.softinio::duck4s::0.1.4",
60+
ivy"com.softinio::duck4s-cats-effect::0.1.4"
6161
)
6262
```
6363

duck4s/docs/_docs/cats-effect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ The `duck4s-cats-effect` module provides a purely functional interface for DuckD
1111
### SBT
1212

1313
```sbt
14-
libraryDependencies += "com.softinio" %% "duck4s-cats-effect" % "0.1.3"
14+
libraryDependencies += "com.softinio" %% "duck4s-cats-effect" % "0.1.4"
1515
```
1616

1717
### Mill
1818

1919
```scala sc:nocompile
2020
def ivyDeps = Agg(
21-
ivy"com.softinio::duck4s-cats-effect::0.1.3"
21+
ivy"com.softinio::duck4s-cats-effect::0.1.4"
2222
)
2323
```
2424

duck4s/docs/_docs/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ Add duck4s to your `build.sbt`:
1414

1515
```sbt
1616
// Core library
17-
libraryDependencies += "com.softinio" %% "duck4s" % "0.1.3"
17+
libraryDependencies += "com.softinio" %% "duck4s" % "0.1.4"
1818

1919
// Optional: cats-effect integration (includes fs2)
20-
libraryDependencies += "com.softinio" %% "duck4s-cats-effect" % "0.1.3"
20+
libraryDependencies += "com.softinio" %% "duck4s-cats-effect" % "0.1.4"
2121
```
2222

2323
### Mill
@@ -27,13 +27,13 @@ Add duck4s to your `build.mill`:
2727
```scala sc:nocompile
2828
// Core library
2929
def ivyDeps = Agg(
30-
ivy"com.softinio::duck4s::0.1.3"
30+
ivy"com.softinio::duck4s::0.1.4"
3131
)
3232

3333
// Optional: cats-effect integration (includes fs2)
3434
def ivyDeps = Agg(
35-
ivy"com.softinio::duck4s::0.1.3",
36-
ivy"com.softinio::duck4s-cats-effect::0.1.3"
35+
ivy"com.softinio::duck4s::0.1.4",
36+
ivy"com.softinio::duck4s-cats-effect::0.1.4"
3737
)
3838
```
3939

duck4s/src/algebra/Batch.scala

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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(

duck4s/src/algebra/PreparedStatement.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ case class DuckDBPreparedStatement(
225225
* @example
226226
* {{{stmt.setTimestamp(1, java.sql.Timestamp.valueOf("2024-01-01 12:00:00"))}}}
227227
*
228-
* @since 0.2.0
228+
* @since 0.1.4
229229
*/
230230
def setTimestamp(
231231
parameterIndex: Int,
@@ -259,7 +259,7 @@ case class DuckDBPreparedStatement(
259259
* @example
260260
* {{{stmt.setObject(1, java.util.UUID.randomUUID())}}}
261261
*
262-
* @since 0.2.0
262+
* @since 0.1.4
263263
*/
264264
def setObject(
265265
parameterIndex: Int,
@@ -290,7 +290,7 @@ case class DuckDBPreparedStatement(
290290
* @example
291291
* {{{stmt.setFloat(1, 3.14f)}}}
292292
*
293-
* @since 0.2.0
293+
* @since 0.1.4
294294
*/
295295
def setFloat(parameterIndex: Int, value: Float): Either[DuckDBError, Float] =
296296
try
@@ -318,7 +318,7 @@ case class DuckDBPreparedStatement(
318318
* @example
319319
* {{{stmt.setDate(1, java.sql.Date.valueOf("2024-06-15"))}}}
320320
*
321-
* @since 0.2.0
321+
* @since 0.1.4
322322
*/
323323
def setDate(
324324
parameterIndex: Int,
@@ -349,7 +349,7 @@ case class DuckDBPreparedStatement(
349349
* @example
350350
* {{{stmt.setBigDecimal(1, BigDecimal("123.45"))}}}
351351
*
352-
* @since 0.2.0
352+
* @since 0.1.4
353353
*/
354354
def setBigDecimal(
355355
parameterIndex: Int,
@@ -380,7 +380,7 @@ case class DuckDBPreparedStatement(
380380
* @example
381381
* {{{stmt.setBytes(1, "hello".getBytes("UTF-8"))}}}
382382
*
383-
* @since 0.2.0
383+
* @since 0.1.4
384384
*/
385385
def setBytes(
386386
parameterIndex: Int,

duck4s/src/algebra/ResultSet.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ case class DuckDBResultSet(
9595
* DuckDB JDBC does not implement the standard `getBytes` method; this wraps
9696
* `getBlob` internally.
9797
*
98-
* @since 0.2.0
98+
* @since 0.1.4
9999
*/
100100
def getBytes(columnLabel: String): Array[Byte] =
101101
val blob = underlying.getBlob(columnLabel)
@@ -110,7 +110,7 @@ case class DuckDBResultSet(
110110
* DuckDB JDBC does not implement the standard `getBytes` method; this wraps
111111
* `getBlob` internally.
112112
*
113-
* @since 0.2.0
113+
* @since 0.1.4
114114
*/
115115
def getBytes(columnIndex: Int): Array[Byte] =
116116
val blob = underlying.getBlob(columnIndex)

0 commit comments

Comments
 (0)