Skip to content

Commit

Permalink
Update doobie-core to 1.0.0-RC4 (#491)
Browse files Browse the repository at this point in the history
* Update doobie-core to 1.0.0-RC4

* Fix compile errors for doobie update

---------

Co-authored-by: eikek-scala-steward <[email protected]>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: eikek <[email protected]>
  • Loading branch information
4 people authored Aug 3, 2023
1 parent e393e2b commit d208a86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions modules/doobie/src/test/scala/emil/doobie/EmilDoobeTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ import munit._
class EmilDoobieTest extends FunSuite {

val xa = Transactor.fromDriverManager[IO](
"org.h2.Driver",
"jdbc:h2:mem:testing;DB_CLOSE_DELAY=-1",
"sa",
""
driver = "org.h2.Driver",
url = "jdbc:h2:mem:testing;DB_CLOSE_DELAY=-1",
user = "sa",
password = "",
logHandler = None
)

def insertRecord(r: Record) = {
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._

object Dependencies {

val doobieVersion = "1.0.0-RC2"
val doobieVersion = "1.0.0-RC4"
val flexmarkVersion = "0.62.2"
val fs2Version = "3.8.0"
val greenmailVersion = "2.0.0"
Expand Down

0 comments on commit d208a86

Please sign in to comment.