diff --git a/build.sbt b/build.sbt index cd694e6..47648e2 100644 --- a/build.sbt +++ b/build.sbt @@ -25,7 +25,7 @@ lazy val commonScalaSettings = Seq( lazy val sharedDependencies = Seq( - enumaratum, + enumeratum, enumeratumCirce, circeRefined, circeCore, diff --git a/project/Dependencies.scala b/project/Dependencies.scala index a569c18..0aac3ce 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,14 +1,13 @@ import sbt._ object Dependencies { - lazy val http4sVersion = "0.21.0-M5" lazy val scalatest = "org.scalatest" %% "scalatest" % "3.1.1" lazy val scalameta = "org.scalameta" %% "scalameta" % "4.3.0" - lazy val scalafmt = "org.scalameta" %% "scalafmt-dynamic" % "2.5.0-RC2" + lazy val scalafmt = "org.scalameta" %% "scalafmt-dynamic" % "2.6.4" - lazy val enumaratum = "com.beachape" %% "enumeratum" % "1.5.13" - lazy val enumeratumCirce = "com.beachape" %% "enumeratum-circe" % "1.5.22" + lazy val enumeratum = "com.beachape" %% "enumeratum" % "1.6.1" + lazy val enumeratumCirce = "com.beachape" %% "enumeratum-circe" % "1.6.1" lazy val circeRefined = "io.circe" %% "circe-refined" % "0.13.0" lazy val circeCore = "io.circe" %% "circe-core" % "0.13.0" lazy val circeParser = "io.circe" %% "circe-parser" % "0.13.0" @@ -18,14 +17,14 @@ object Dependencies { lazy val circeDerivation = "io.circe" %% "circe-derivation" % "0.13.0-M4" lazy val scalaCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2" - lazy val http4sCore = "org.http4s" %% "http4s-core" % http4sVersion - lazy val http4sDsl = "org.http4s" %% "http4s-dsl" % http4sVersion - lazy val http4sCirce = "org.http4s" %% "http4s-circe" % http4sVersion - lazy val http4sServer = "org.http4s" %% "http4s-server" % http4sVersion + lazy val http4sVersion = "0.21.7" + lazy val http4sCore = "org.http4s" %% "http4s-core" % http4sVersion + lazy val http4sDsl = "org.http4s" %% "http4s-dsl" % http4sVersion + lazy val http4sCirce = "org.http4s" %% "http4s-circe" % http4sVersion + lazy val http4sServer = "org.http4s" %% "http4s-server" % http4sVersion - lazy val swaggerCore = "io.swagger.core.v3" % "swagger-core" % "2.0.9" - lazy val swaggerParser = "io.swagger.parser.v3" % "swagger-parser" % "2.0.14" - - def scriptedPlugin(libVersion: String) = "org.scala-sbt" %% "scripted-plugin" % libVersion + lazy val swaggerCore = "io.swagger.core.v3" % "swagger-core" % "2.1.4" + lazy val swaggerParser = "io.swagger.parser.v3" % "swagger-parser" % "2.0.21" + def scriptedPlugin(libVersion: String) = "org.scala-sbt" %% "scripted-plugin" % libVersion } diff --git a/project/ScalaOptions.scala b/project/ScalaOptions.scala index 0ae1c20..57bc4e3 100644 --- a/project/ScalaOptions.scala +++ b/project/ScalaOptions.scala @@ -1,7 +1,7 @@ import sbt._ object ScalaOptions { - lazy val scala213 = "2.13.1" + lazy val scala213 = "2.13.2" lazy val scala212 = "2.12.11" lazy val supportedVersions = List(scala213, scala212)