Skip to content

Commit

Permalink
Update doobie-core, doobie-hikari to 1.0.0-RC7 (#1747)
Browse files Browse the repository at this point in the history
* Update doobie-core, doobie-hikari to 1.0.0-RC7

* added import for automatic derivation of Read in doobie, introduced in RC7

* actually test 3.3.5

---------

Co-authored-by: Julien Jean Paul Sirocchi <[email protected]>
  • Loading branch information
scala-steward and sirocchj authored Feb 10, 2025
1 parent 264f547 commit 405407a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
matrix:
scala:
- 2.13.16
- 3.3.4
- 3.3.5
java:
- [email protected]
- [email protected]
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Publish Snapshot for Scala 3
run: CI_SNAPSHOT_RELEASE=publish sbt ++3.3.4 releaseIt
run: CI_SNAPSHOT_RELEASE=publish sbt ++3.3.5 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
project/target
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Release for Scala 3
run: CI_RELEASE=publishSigned sbt ++3.3.4 releaseIt
run: CI_RELEASE=publishSigned sbt ++3.3.5 releaseIt
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ val V = new {
val awssdk = "2.30.16"
val `cats-effect` = "3.5.3"
val circe = "0.14.10"
val doobie = "1.0.0-RC5"
val doobie = "1.0.0-RC7"
val `embedded-kafka` = "3.9.0"
val `embedded-kafka-schema-registry` = "7.8.0"
val http4s = "0.23.30"
Expand Down
1 change: 1 addition & 0 deletions example/src/main/scala/tamer/db/DatabaseGeneralized.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package tamer
package db

import doobie.generic.auto._
import doobie.implicits.legacy.instant._
import doobie.syntax.string._
import zio._
Expand Down
1 change: 1 addition & 0 deletions example/src/main/scala/tamer/db/DatabaseSimple.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package db

import java.time.Instant

import doobie.generic.auto._
import doobie.implicits.legacy.instant._
import doobie.syntax.string._
import zio._
Expand Down

0 comments on commit 405407a

Please sign in to comment.