Skip to content

Commit

Permalink
Update project dependencies to latest versions. (#366)
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel Volpe <[email protected]>
  • Loading branch information
froth and gvolpe authored Jan 25, 2023
1 parent e8647d4 commit 82c85ec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 23 deletions.
11 changes: 1 addition & 10 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import com.scalapenos.sbt.prompt.SbtPrompt.autoImport._
import com.scalapenos.sbt.prompt._
import Dependencies._
import microsites.ExtraMdFileConfig

ThisBuild / organizationName := "ProfunKtor"
ThisBuild / crossScalaVersions := List("2.12.15", "2.13.8", "3.2.1")
ThisBuild / crossScalaVersions := List("2.12.17", "2.13.10", "3.2.2")

// publishing
ThisBuild / name := """http4s-jwt-auth"""
Expand All @@ -20,13 +18,6 @@ ThisBuild / developers := List(
)
)

promptTheme := PromptTheme(
List(
text("[sbt] ", fg(105)),
text(_ => "http4s-jwt-auth", fg(15)).padRight(" λ ")
)
)

def maxClassFileName(v: String) = CrossVersion.partialVersion(v) match {
case Some((2, 13)) | Some((3, _)) => List.empty[String]
case _ => List("-Xmax-classfile-name", "100")
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import sbt._
object Dependencies {

object V {
val cats = "2.7.0"
val catsEffect = "3.3.12"
val fs2 = "3.2.7"
val http4s = "0.23.12"
val jwt = "9.0.5"
val cats = "2.9.0"
val catsEffect = "3.4.5"
val fs2 = "3.5.0"
val http4s = "0.23.18"
val jwt = "9.1.2"

val betterMonadicFor = "0.3.1"
val kindProjector = "0.13.2"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.8.2
13 changes: 6 additions & 7 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
resolvers += Classpaths.sbtPluginReleases
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.3.1")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.3.4")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.2")
addSbtPlugin("com.scalapenos" % "sbt-prompt" % "1.0.2")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.9.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.1")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.6")

0 comments on commit 82c85ec

Please sign in to comment.