From 951c0c9cd1359cf91f63f673069266be6a72bd62 Mon Sep 17 00:00:00 2001 From: Rob Norris Date: Thu, 25 Feb 2021 13:38:56 -0600 Subject: [PATCH] Update deps, Scala 3.0.0-RC1 --- build.sbt | 14 +++++++------- project/plugins.sbt | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build.sbt b/build.sbt index 80761e7..fd8de56 100644 --- a/build.sbt +++ b/build.sbt @@ -1,11 +1,11 @@ val scala212Version = "2.12.12" -val scala213Version = "2.13.4" -val scala30PreviousVersion = "3.0.0-M2" -val scala30Version = "3.0.0-M3" +val scala213Version = "2.13.5" +val scala30PreviousVersion = "3.0.0-M3" +val scala30Version = "3.0.0-RC1" -val catsVersion = "2.3.1" -val catsEffectVersion = "2.3.1" +val catsVersion = "2.4.2" +val catsEffectVersion = "2.3.3" // Global Settings lazy val commonSettings = Seq( @@ -87,7 +87,7 @@ lazy val http4s = project name := "natchez-http4s", description := "Natchez middleware for http4s.", libraryDependencies ++= Seq( - "org.tpolecat" %% "natchez-core" % "0.0.19", + "org.tpolecat" %% "natchez-core" % "0.0.20", "org.http4s" %% "http4s-core" % "0.21.15", "org.http4s" %% "http4s-client" % "0.21.15", ).filterNot(_ => isDotty.value) @@ -104,7 +104,7 @@ lazy val examples = project description := "Example programs for Natchez-Http4s.", scalacOptions -= "-Xfatal-warnings", libraryDependencies ++= Seq( - "org.tpolecat" %% "natchez-jaeger" % "0.0.19", + "org.tpolecat" %% "natchez-jaeger" % "0.0.20", "org.http4s" %% "http4s-dsl" % "0.21.15", "org.http4s" %% "http4s-ember-server" % "0.21.15", "org.slf4j" % "slf4j-simple" % "1.7.30", diff --git a/project/plugins.sbt b/project/plugins.sbt index a2434da..d50dd92 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,9 +1,9 @@ addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.5") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0") -addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.1") +addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.2") addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1") addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3") addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.16") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.1") -addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.2") -addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.16") \ No newline at end of file +addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.18") \ No newline at end of file