From 445302f0ef9e44dd6ae81443f742a21b8045c711 Mon Sep 17 00:00:00 2001 From: Grigory Pomadchin Date: Tue, 8 Oct 2024 00:47:57 -0400 Subject: [PATCH] Update circe dependecy --- build.sbt | 4 ++-- project/Versions.scala | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 4cdb084a..b2f10d20 100644 --- a/build.sbt +++ b/build.sbt @@ -132,7 +132,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform) "io.circe" %%% "circe-core" % Versions.Circe, "io.circe" %%% "circe-generic" % Versions.Circe, "io.circe" %%% "circe-parser" % Versions.Circe, - "io.circe" %%% "circe-refined" % Versions.Circe, + "io.circe" %%% "circe-refined" % Versions.CirceRefined, "org.typelevel" %%% "cats-core" % Versions.Cats, "org.typelevel" %%% "cats-kernel" % Versions.Cats ) @@ -196,7 +196,7 @@ lazy val client = crossProject(JSPlatform, JVMPlatform) libraryDependencies ++= Seq( "io.circe" %%% "circe-core" % Versions.Circe, "io.circe" %%% "circe-generic" % Versions.Circe, - "io.circe" %%% "circe-refined" % Versions.Circe, + "io.circe" %%% "circe-refined" % Versions.CirceRefined, "com.chuusai" %%% "shapeless" % Versions.Shapeless, "eu.timepit" %%% "refined" % Versions.Refined, "org.typelevel" %%% "cats-core" % Versions.Cats, diff --git a/project/Versions.scala b/project/Versions.scala index 88f35ddc..4a05d199 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -12,7 +12,8 @@ object Versions { } val Cats = "2.12.0" - val Circe = "0.14.9" + val Circe = "0.14.10" + val CirceRefined = "0.15.1" val CirceJsonSchema = "0.2.0" val DisciplineScalatest = "2.3.0" val Enumeratum = "1.7.5"