Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 9 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
Global / onChangedBuildSource := ReloadOnSourceChanges

val V = new {
val cats = "2.10.0"
val catsEffect = "3.6.3"
val circe = "0.14.8"
val cats = "2.13.0"
val catsEffect = "3.7.0"
val circe = "0.14.15"
val http4s = "0.23.33"
val munit = "1.0.0-M11"
val munitCatsEffect = "2.1.0"
val munit = "1.2.4"
val munitScalacheck = "1.2.0"
val munitCatsEffect = "2.2.0"
val scala = "3.3.7"
val slf4j = "1.7.36"
val slf4j2 = "2.0.17"
val tzdb = "2.5.0"
val tzdb = "2.6.0"
}

val D = new {
Expand All @@ -23,7 +24,7 @@ val D = new {
val http4s = Def.setting("org.http4s" %%% "http4s-core" % V.http4s)
val munit = Def.setting("org.scalameta" %%% "munit" % V.munit)
val munitCatsEffect = Def.setting("org.typelevel" %%% "munit-cats-effect" % V.munitCatsEffect)
val munitScalacheck = Def.setting("org.scalameta" %%% "munit-scalacheck" % V.munit)
val munitScalacheck = Def.setting("org.scalameta" %%% "munit-scalacheck" % V.munitScalacheck)
val circe = Def.setting("io.circe" %%% "circe-parser" % V.circe)
val tzdb = Def.setting("io.github.cquiroz" %%% "scala-java-time-tzdb" % V.tzdb)
}
Expand Down Expand Up @@ -109,7 +110,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
)

val http4sFolder = file("./modules/http4s")
lazy val http4s = crossProject(JSPlatform, JVMPlatform, NativePlatform)
lazy val http4s = crossProject(JSPlatform, JVMPlatform /* , NativePlatform */ )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be uncommented again now the full release is ready for Native as well?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're still waiting for http4s native 0.5 to be released. It's probably not too far out so this could be merged now and uncommented in a few days(?), or we can wait for the release

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do have to wait for that release as we want to keep the Native Platform support. Once they have the updated the library, we can update this PR.

.crossType(CrossType.Pure)
.in(http4sFolder)
.settings(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.8.2")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.7.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.10")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.8")
Expand Down
Loading