Skip to content

Commit

Permalink
Update Scala to 2.13.11 (#82)
Browse files Browse the repository at this point in the history
Fixes #79
  • Loading branch information
lolgab authored Jun 2, 2023
1 parent dea734c commit d49fd04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion

object Deps {
def acyclicAgg(scalaVersion: String) =
Agg(ivy"com.lihaoyi:::acyclic:0.3.6")
.filter(_ => scalaVersion != "2.12.18" /* exclude unreleased versions, if any */ )
Agg(ivy"com.lihaoyi:::acyclic:0.3.7")
.filter(_ => scalaVersion != "2.13.11" /* exclude unreleased versions, if any */ )

def scalaCompiler(scalaVersion: String) = ivy"org.scala-lang:scala-compiler:${scalaVersion}"
val utest = ivy"com.lihaoyi::utest:0.8.1"
Expand All @@ -14,7 +14,7 @@ object Deps {
val crosses =
Seq("2.11.12") ++
8.to(18).map("2.12." + _) ++
0.to(10).map("2.13." + _)
0.to(11).map("2.13." + _)

object acyclic extends Cross[AcyclicModule](crosses: _*)
class AcyclicModule(val crossScalaVersion: String) extends CrossScalaModule with PublishModule {
Expand Down

0 comments on commit d49fd04

Please sign in to comment.