Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #223

Merged
merged 6 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Dependencies._
import sbt.Keys._

organization := "com.yannmoisan"
crossScalaVersions := Seq("2.12.19", "2.13.10")
crossScalaVersions := Seq("2.12.19", "2.13.14")

scalafmtOnCompile := true

Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sbt._

object Dependencies {
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.15"
lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.4.6"
lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.4.6"
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"
lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.5.4"
lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.4"
lazy val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5"
}
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0")

Expand Down
Loading