Skip to content
Merged
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
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ lazy val http4s = module("http4s") {
.settings(
description := "http4s based client for kubernetes",
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-client" % "0.23.29"
"org.http4s" %%% "http4s-client" % "0.23.30"
)
)
.dependsOn(client, jawn)
Expand All @@ -159,7 +159,7 @@ lazy val http4sEmber = module("http4s-ember") {
.settings(
description := "http4s ember based client for kubernetes",
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-ember-client" % "0.23.29"
"org.http4s" %%% "http4s-ember-client" % "0.23.30"
)
)
.dependsOn(http4s)
Expand Down Expand Up @@ -376,7 +376,7 @@ lazy val docs = project
.enablePlugins(ScalaK8sWebsite)
.settings(
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-circe" % "0.23.29",
"org.http4s" %%% "http4s-circe" % "0.23.30",
"com.softwaremill.sttp.client3" %%% "circe" % "3.10.1"
)
)
Expand Down Expand Up @@ -414,7 +414,7 @@ lazy val exampleJVM = example("jvm") {
.crossType(CrossType.Pure)
.settings(
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-circe" % "0.23.29",
"org.http4s" %%% "http4s-circe" % "0.23.30",
"com.softwaremill.sttp.client3" %%% "circe" % "3.10.1"
)
)
Expand All @@ -426,7 +426,7 @@ lazy val exampleCrossPlatform = example("cross-platform") {
.crossType(CrossType.Pure)
.settings(
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-circe" % "0.23.29"
"org.http4s" %%% "http4s-circe" % "0.23.30"
)
)
.jsSettings(
Expand Down
Loading