From 15b3fa7b7cb625b5ecf91d0381a3392f00d4ba78 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 22 Apr 2025 17:11:41 +0000 Subject: [PATCH] Update circe-core to 0.14.13 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 824e1d3b..6abc321b 100644 --- a/build.sbt +++ b/build.sbt @@ -322,13 +322,13 @@ lazy val circe = crossProject(JSPlatform, JVMPlatform) ) .jvmSettings( libraryDependencies ++= Seq( - "io.circe" %% "circe-core" % "0.14.1" + "io.circe" %% "circe-core" % "0.14.13" ) ++ scalaTest ) .jsSettings( fork := false, libraryDependencies ++= Seq( - "io.circe" %%% "circe-core" % "0.14.1", + "io.circe" %%% "circe-core" % "0.14.13", "org.scalatest" %%% "scalatest" % scalaTestVersion % "test" ) )