Skip to content

Commit

Permalink
Updating circe version to 0.14.9
Browse files Browse the repository at this point in the history
  • Loading branch information
scottynomad committed Oct 23, 2024
1 parent 9b2cba9 commit 203e2b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ object Settings {
val scalaTest = "3.2.15"
val scalactic = "3.2.15"
val scopt = "3.5.0"
val circe = "0.13.0"
val circe = "0.14.9"
val circeGenericExtras = "0.14.4"
val jupyterScala = "0.4.1"
}

Expand All @@ -26,7 +27,7 @@ object Settings {
"io.circe" %%% "circe-core" % versions.circe,
"io.circe" %%% "circe-generic" % versions.circe,
"io.circe" %%% "circe-parser" % versions.circe,
"io.circe" %%% "circe-generic-extras" % versions.circe,
"io.circe" %%% "circe-generic-extras" % versions.circeGenericExtras,
"org.scalatest" %%% "scalatest" % versions.scalaTest % "it,test",
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import com.cibo.evilplot.colors.Color
import com.cibo.evilplot.numeric.{Point, Point2d}
import io.circe.generic.extras.Configuration
import io.circe.generic.extras.semiauto._
import io.circe.{Decoder, Encoder, ObjectEncoder}
import io.circe.{Decoder, Encoder}

sealed trait Gradient2d {
val stops: Seq[GradientStop]
Expand Down

0 comments on commit 203e2b9

Please sign in to comment.