Skip to content

Commit 6ae6646

Browse files
committed
Bump pureharm-db-core to 0.4.0
1 parent 7e4a1bf commit 6ae6646

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

build.sbt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ThisBuild / resolvers += Resolver.sonatypeRepo("snapshots")
8686

8787
// format: off
8888
val pureharmCoreV = "0.2.0" //https://github.com/busymachines/pureharm-core/releases
89-
val pureharmDBCoreV = "0.3.0" //https://github.com/busymachines/pureharm-db-core/releases
89+
val pureharmDBCoreV = "0.4.0" //https://github.com/busymachines/pureharm-db-core/releases
9090
val attoV = "0.9.3" //https://github.com/tpolecat/atto/releases
9191
val pgJDBCV = "42.2.19" //java — https://github.com/pgjdbc/pgjdbc/releases
9292
val pureharmTestkitV = "0.3.0" //https://github.com/busymachines/pureharm-testkit/releases
@@ -111,14 +111,14 @@ lazy val `db-core-jdbc` = project
111111
.settings(
112112
name := "pureharm-db-core-jdbc",
113113
libraryDependencies ++= Seq(
114-
"com.busymachines" %% "pureharm-core-anomaly" % pureharmCoreV withSources(),
115-
"com.busymachines" %% "pureharm-db-core" % pureharmDBCoreV withSources(),
116-
"org.tpolecat" %% "atto-core" % attoV withSources(),
117-
118-
"org.postgresql" % "postgresql" % pgJDBCV withSources (),
119-
120-
"com.busymachines" %% "pureharm-testkit" % pureharmTestkitV % Test withSources(),
121-
"org.typelevel" %% "log4cats-slf4j" % log4catsV % Test withSources(),
114+
// format: off
115+
"org.postgresql" % "postgresql" % pgJDBCV withSources(),
116+
"com.busymachines" %% "pureharm-core-anomaly" % pureharmCoreV withSources(),
117+
"com.busymachines" %% "pureharm-db-core" % pureharmDBCoreV withSources(),
118+
"org.tpolecat" %% "atto-core" % attoV withSources(),
119+
"com.busymachines" %% "pureharm-testkit" % pureharmTestkitV % Test withSources(),
120+
"org.typelevel" %% "log4cats-slf4j" % log4catsV % Test withSources(),
121+
// format: off
122122
),
123123
).settings(
124124
javaOptions ++= Seq("-source", "1.8", "-target", "1.8")

db-core-jdbc/src/main/scala/busymachines/pureharm/db/pgjdbc/PSQLExceptionInterpreters.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
package busymachines.pureharm.db.pgjdbc
1818

19+
import cats._
20+
import cats.syntax.all._
1921
import busymachines.pureharm.db._
20-
import busymachines.pureharm.effects._
21-
import busymachines.pureharm.effects.implicits._
2222
import org.postgresql.util._
2323

2424
/** @author Lorand Szakacs, https://github.com/lorandszakacs

db-core-jdbc/src/test/scala/busymachines/pureharm/db/pgjdbc/PSQLExceptionParserTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package busymachines.pureharm.db.pgjdbc
1818

19-
import busymachines.pureharm.effects._
19+
import cats.effect.IO
2020
import busymachines.pureharm.testkit._
2121
import org.typelevel.log4cats.slf4j._
2222

0 commit comments

Comments
 (0)