Skip to content

Commit

Permalink
Update circe dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Oct 8, 2024
1 parent 47d444e commit 445302f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 445302f

Please sign in to comment.