Skip to content

Commit

Permalink
Update circe-generic to 0.14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed May 6, 2024
1 parent 385fe88 commit d05f906
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ scalaVersion := "2.13.3" // Also supports 2.11.x and 2.12.x

val http4sVersion = "1.0.0-M23"
val specsVersion = "4.10.0"
val CirceVersion = "0.14.0-M1"
val CirceVersion = "0.14.7"
val CirceGenericExtrasVersion = "0.14.1"

lazy val root = (project in file("."))
Expand All @@ -15,18 +15,19 @@ lazy val root = (project in file("."))
"org.http4s" %% "http4s-core" % http4sVersion,
"org.http4s" %% "http4s-client" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"io.circe" %% "circe-generic" % CirceVersion,
"io.circe" %% "circe-generic" % CirceVersion,
"io.circe" %% "circe-generic-extras" % CirceGenericExtrasVersion,
"org.specs2" %% "specs2-core" % specsVersion % "test"
),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.10.3"),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.10.3"),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
mimaPreviousArtifacts := Set.empty
)

scalacOptions ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-encoding",
"UTF-8",
"-language:higherKinds",
"-language:postfixOps",
"-feature",
Expand Down

0 comments on commit d05f906

Please sign in to comment.