Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
|
|""".stripMargin,
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "2.10.0",
"org.typelevel" %%% "cats-core" % "2.12.0",
"org.scalatest" %%% "scalatest" % "3.2.18" % Test,
"org.specs2" %%% "specs2-core" % "4.20.5" % Test
"org.specs2" %%% "specs2-core" % "4.21.0" % Test
),
Test / scalacOptions -= "-Werror"
)
.platformsSettings(JSPlatform, NativePlatform)(
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.5.0"
"io.github.cquiroz" %%% "scala-java-time" % "2.6.0"
)
)

Expand All @@ -96,7 +96,7 @@ lazy val sql = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.module("sql", "JDBC API wrapped project with Effect System")
.platformsSettings(JSPlatform, NativePlatform)(
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.5.0"
"io.github.cquiroz" %%% "scala-java-time" % "2.6.0"
)
)

Expand All @@ -105,9 +105,9 @@ lazy val dsl = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.module("dsl", "Projects that provide a way to connect to the database")
.settings(
libraryDependencies ++= Seq(
"org.typelevel" %%% "twiddles-core" % "0.8.0",
"org.typelevel" %%% "cats-free" % "2.10.0",
"org.typelevel" %%% "cats-effect" % "3.6.3",
"org.typelevel" %%% "twiddles-core" % "0.9.0",
"org.typelevel" %%% "cats-free" % "2.13.0",
"org.typelevel" %%% "cats-effect" % "3.7.0-RC1",
"org.typelevel" %%% "munit-cats-effect" % "2.1.0" % Test
)
)
Expand Down Expand Up @@ -185,14 +185,14 @@ lazy val connector = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.settings(
scalacOptions += "-Ykind-projector:underscores",
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-effect" % "3.6.3",
"co.fs2" %%% "fs2-core" % "3.12.0",
"co.fs2" %%% "fs2-io" % "3.12.0",
"org.scodec" %%% "scodec-bits" % "1.1.38",
"org.scodec" %%% "scodec-core" % "2.2.2",
"org.typelevel" %%% "cats-effect" % "3.7.0-RC1",
"co.fs2" %%% "fs2-core" % "3.13.0-M6",
"co.fs2" %%% "fs2-io" % "3.13.0-M6",
"org.scodec" %%% "scodec-bits" % "1.2.0",
"org.scodec" %%% "scodec-core" % "2.3.1",
"org.scodec" %%% "scodec-cats" % "1.2.0",
"org.typelevel" %%% "otel4s-core-trace" % "0.13.1",
"org.typelevel" %%% "twiddles-core" % "0.8.0",
"org.typelevel" %%% "twiddles-core" % "0.9.0",
"org.typelevel" %%% "munit-cats-effect" % "2.1.0" % Test
)
)
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ScalaVersions.*

object Dependencies {

val catsEffect = "org.typelevel" %% "cats-effect" % "3.6.3"
val catsEffect = "org.typelevel" %% "cats-effect" % "3.7.0-RC1"

val schemaspy = "org.schemaspy" % "schemaspy" % "6.2.4"

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh"
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.8.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.8.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.7")
addSbtPlugin("com.armanbilge" % "sbt-scala-native-config-brew-github-actions" % "0.4.0")
addSbtPlugin("com.github.sbt" % "sbt-boilerplate" % "0.7.0")
addSbtPlugin("io.chrisdavenport" %% "sbt-npm-package" % "0.2.0")
Expand Down
Loading