From 3b6ae9a4f78986a4deee094456724901ab92161d Mon Sep 17 00:00:00 2001 From: Hossein Naderi Date: Thu, 17 Oct 2024 08:39:49 +0330 Subject: [PATCH] Update circe to 3.10.1 (#360) --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 0814973..98196ae 100644 --- a/build.sbt +++ b/build.sbt @@ -377,7 +377,7 @@ lazy val docs = project .settings( libraryDependencies ++= Seq( "org.http4s" %%% "http4s-circe" % "0.23.28", - "com.softwaremill.sttp.client3" %%% "circe" % "3.10.0" + "com.softwaremill.sttp.client3" %%% "circe" % "3.10.1" ) ) .dependsOn(http4sEmber.jvm, sttp.jvm, circe.jvm, manifests.jvm) @@ -415,7 +415,7 @@ lazy val exampleJVM = example("jvm") { .settings( libraryDependencies ++= Seq( "org.http4s" %%% "http4s-circe" % "0.23.28", - "com.softwaremill.sttp.client3" %%% "circe" % "3.10.0" + "com.softwaremill.sttp.client3" %%% "circe" % "3.10.1" ) ) .dependsOn(http4sNetty, http4sEmber, circe, zio, sttp)