Skip to content

Commit

Permalink
Merge pull request #5 from tpolecat/rc1
Browse files Browse the repository at this point in the history
Update deps, Scala 3.0.0-RC1
  • Loading branch information
tpolecat authored Feb 25, 2021
2 parents 90ab232 + 951c0c9 commit 93daa6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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(
Expand Down Expand Up @@ -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)
Expand All @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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")
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.18")

0 comments on commit 93daa6f

Please sign in to comment.