From bb354f1931af3c4a669873aec14e0ce9976adfde Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 6 May 2024 04:46:47 +0000 Subject: [PATCH] Update scala-library to 2.13.14 --- build.sbt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index 359f522..2114034 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -scalaVersion := "2.13.3" // Also supports 2.11.x and 2.12.x +scalaVersion := "2.13.14" // Also supports 2.11.x and 2.12.x val http4sVersion = "1.0.0-M23" val specsVersion = "4.10.0" @@ -10,23 +10,24 @@ lazy val root = (project in file(".")) organization := "com.onekhan", name := "vault4s", version := "0.1.0", - scalaVersion := "2.13.3", + scalaVersion := "2.13.14", libraryDependencies ++= Seq( "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",