Skip to content

Commit

Permalink
Add support for Scala 2.13.15
Browse files Browse the repository at this point in the history
  • Loading branch information
panbingkun committed Sep 20, 2024
1 parent 8384186 commit 2183309
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("2.12.20").contains(scalaVersion) /* exclude unreleased versions, if any */ )(
Agg.when(!Seq("2.13.15").contains(scalaVersion) /* exclude unreleased versions, if any */ )(
ivy"com.lihaoyi:::acyclic:0.3.12"
)
}
Expand All @@ -17,7 +17,7 @@ object Deps {
val crosses =
Seq("2.11.12") ++
8.to(20).map("2.12." + _) ++
0.to(14).map("2.13." + _)
0.to(15).map("2.13." + _)

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

0 comments on commit 2183309

Please sign in to comment.