From 928cf97e1d9a93ba2929bdb9d0b5fb34c4de4a16 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 24 Jun 2026 20:02:38 +0000 Subject: [PATCH] Update circe-core to 0.14.16 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index aa51a9e5..6ecc763a 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.16" ) ++ scalaTest ) .jsSettings( fork := false, libraryDependencies ++= Seq( - "io.circe" %%% "circe-core" % "0.14.1", + "io.circe" %%% "circe-core" % "0.14.16", "org.scalatest" %%% "scalatest" % scalaTestVersion % "test" ) )