Skip to content

Commit

Permalink
Add support for Scala 2.13.13 (#117)
Browse files Browse the repository at this point in the history
Fix #116

Pull request: #117
  • Loading branch information
lefou authored Feb 22, 2024
1 parent 6dd6f46 commit 84e407e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion

object Deps {
def acyclicAgg(scalaVersion: String) = {
Agg.when(!Seq().contains(scalaVersion) /* exclude unreleased versions, if any */ )(
Agg.when(!Seq("2.13.13").contains(scalaVersion) /* exclude unreleased versions, if any */ )(
ivy"com.lihaoyi:::acyclic:0.3.10"
)
}
Expand All @@ -17,7 +17,7 @@ object Deps {
val crosses =
Seq("2.11.12") ++
8.to(19).map("2.12." + _) ++
0.to(12).map("2.13." + _)
0.to(13).map("2.13." + _)

object acyclic extends Cross[AcyclicModule](crosses)
trait AcyclicModule extends CrossScalaModule with PublishModule {
Expand Down

0 comments on commit 84e407e

Please sign in to comment.