Skip to content
Merged
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 @@ -33,7 +33,7 @@
ThisBuild / githubWorkflowPublishTargetBranches := Seq()

def foldScalaV[A](scalaVersion: String)(_213: => A, _3: => A): A =
CrossVersion.partialVersion(scalaVersion) match {

Check warning on line 36 in build.sbt

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, 3.3.8, temurin@17)

match may not be exhaustive.

Check warning on line 36 in build.sbt

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, 3.3.8, temurin@25)

match may not be exhaustive.

Check warning on line 36 in build.sbt

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, 3.3.8, temurin@21)

match may not be exhaustive.

Check warning on line 36 in build.sbt

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, 3.3.8, temurin@8)

match may not be exhaustive.

Check warning on line 36 in build.sbt

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest, 3.3.8, temurin@11)

match may not be exhaustive.
case Some((2, 13)) => _213
case Some((3, _)) => _3
}
Expand Down Expand Up @@ -71,7 +71,7 @@
mimaPreviousArtifacts := Set("com.bondlink" %%% name.value % "0.6.0"),
)

lazy val munit = Def.setting("org.scalameta" %%% "munit" % "1.3.3" % Test)
lazy val munit = Def.setting("org.scalameta" %%% "munit" % "1.3.4" % Test)
lazy val shapeless = Def.setting("com.chuusai" %%% "shapeless" % "2.3.13")
lazy val scalacheck = Def.setting("org.scalacheck" %%% "scalacheck" % "1.19.0" % Test)

Expand Down