From 65396377a2bf9ddb86121fb048f8758cbe27ead2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 1 Oct 2025 16:49:49 +0000 Subject: [PATCH] Update circe-core to 0.14.15 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 824e1d3b..5e469db7 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.15" ) ++ scalaTest ) .jsSettings( fork := false, libraryDependencies ++= Seq( - "io.circe" %%% "circe-core" % "0.14.1", + "io.circe" %%% "circe-core" % "0.14.15", "org.scalatest" %%% "scalatest" % scalaTestVersion % "test" ) )