From 924b7373fa2bb1077ae709dfc50cec8de3453780 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 12 Mar 2024 21:05:12 +0000 Subject: [PATCH] Update http4s-circe, http4s-client, ... to 1.0.0-M41 --- build.sbt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 359f522..fbe5374 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ scalaVersion := "2.13.3" // Also supports 2.11.x and 2.12.x -val http4sVersion = "1.0.0-M23" +val http4sVersion = "1.0.0-M41" val specsVersion = "4.10.0" val CirceVersion = "0.14.0-M1" val CirceGenericExtrasVersion = "0.14.1" @@ -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",